acadia/yunq/example.yunq

15 lines
197 B
Plaintext

interface File {
method open (OpenFileRequest) -> (FileResponse);
}
message OpenFileRequest {
string path;
u64 options;
}
message File {
string path;
u64 attrs;
capability mem_cap;
}