mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-25 04:57:29 +00:00
15 lines
253 B
Cap'n Proto
15 lines
253 B
Cap'n Proto
@0x9e83562906de8259;
|
|
|
|
struct Response {
|
|
union {
|
|
ok @0 :Data;
|
|
notFound @1 :Void;
|
|
}
|
|
}
|
|
|
|
interface Ctl {
|
|
write @0 (path :List(Text), data: Data) -> ();
|
|
read @1 (path :List(Text)) -> Response;
|
|
delete @2 (path :List(Text)) -> ();
|
|
}
|