acadia/yunq/example.yunq
2023-10-12 23:04:11 -07:00

14 lines
196 B
Text

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