some samples how to serve things

This commit is contained in:
Daniel Hutzel
2025-02-21 12:57:05 +01:00
parent 23bea0f629
commit 413d4de745
2 changed files with 65 additions and 0 deletions

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 {};
}