acadia/yunq/example.yunq

15 lines
188 B
Plaintext
Raw Normal View History

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