Prepare for new protocol handling

This commit is contained in:
d049904
2023-06-13 17:00:32 +02:00
parent aa13772572
commit 7add92a05c
3 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
using { sap.capire.bookshop as my } from '../db/schema';
service AdminService @(requires:'admin') {
service AdminService @(requires:'admin', path:'/admin') {
entity Books as projection on my.Books;
entity Authors as projection on my.Authors;
}

View File

@@ -1,7 +1,7 @@
/**
* Exposes user information
*/
service UserService {
service UserService @(path: '/user') {
/**
* The current user
*/

View File

@@ -1,3 +1,3 @@
service say {
service say @(path: '/say') {
function hello (to:String) returns String;
}