mirror of
https://gitlab.com/fabinfra/fabaccess/fabaccess-api.git
synced 2025-03-12 14:51:42 +01:00
16 lines
372 B
Cap'n Proto
16 lines
372 B
Cap'n Proto
@0xe89d197dcef9c49b;
|
|
|
|
using Rust = import "programming_language/rust.capnp";
|
|
$Rust.parentModule("schema");
|
|
|
|
using CSharp = import "programming_language/csharp.capnp";
|
|
$CSharp.namespace("FabAccessAPI.Schema");
|
|
|
|
using Resource = import "resource.capnp".Resource;
|
|
|
|
interface Resources
|
|
{
|
|
listAll @0 () -> ( list :List(Resource) );
|
|
get @1 ( name :Text ) -> Resource;
|
|
}
|