mirror of
https://gitlab.com/fabinfra/fabaccess/fabaccess-api.git
synced 2025-03-12 06:41:51 +01:00
12 lines
276 B
Cap'n Proto
12 lines
276 B
Cap'n Proto
@0xaf38846f2a5370ab;
|
|
|
|
using CSharp = import "programming_language/csharp.capnp";
|
|
$CSharp.namespace("FabAccessAPI.Schema");
|
|
|
|
using import "role.capnp".Role;
|
|
|
|
interface Permissions {
|
|
listRoles @0 () -> ( roles :List(Role) );
|
|
getById @1 ( id :Data ) -> ( role :Role );
|
|
}
|