acadia/yunq/example/example.yunq

15 lines
197 B
Plaintext

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