Moved ord-service into plugin package

This commit is contained in:
Daniel Hutzel
2025-02-21 18:19:54 +01:00
parent 20348e0776
commit 7ccd11062a
6 changed files with 15 additions and 0 deletions

12
ord/srv/ord-service.cds Normal file
View File

@@ -0,0 +1,12 @@
// @requires: 'ORDconsumer'
@rest @path:'/ord/v1'
service OrdService {
@readonly entity documents {
key id: String;
}
@readonly entity csn {
key id: String;
}
function api (service: String, format: String) returns {};
}