mirror of
https://github.com/bytedance/g3.git
synced 2026-05-05 23:41:57 +00:00
9 lines
264 B
Cap'n Proto
9 lines
264 B
Cap'n Proto
@0x9045d8bef5c9e129;
|
|
|
|
using Types = import "types.capnp";
|
|
|
|
interface UserGroupControl {
|
|
listStaticUser @0 () -> (result :List(Text));
|
|
listDynamicUser @1 () -> (result :List(Text));
|
|
publishDynamicUser @2 (contents :Text) -> (result :Types.OperationResult);
|
|
}
|