7 lines
205 B
Plaintext
7 lines
205 B
Plaintext
using { sap.capire.bookshop as my } from '../db/schema';
|
|
|
|
service AdminService @(_requires:'authenticated-user') {
|
|
entity Books as projection on my.Books;
|
|
entity Authors as projection on my.Authors;
|
|
}
|