mirror of
https://gitlab.com/fabinfra/fabaccess/fabaccess-api.git
synced 2025-03-12 23:01:47 +01:00
16 lines
328 B
Cap'n Proto
16 lines
328 B
Cap'n Proto
@0xc0542f62613a5c5e;
|
|
|
|
using CSharp = import "programming_language/csharp.capnp";
|
|
$CSharp.namespace("FabAccessAPI.Schema");
|
|
|
|
interface TraitSuper {
|
|
getName @0 () -> ( name :Text );
|
|
}
|
|
|
|
struct TraitError(ConstraintError) {
|
|
union {
|
|
permissionFailed @0 :Void;
|
|
constraintViolation @1 :ConstraintError;
|
|
}
|
|
}
|