[VictoriaFalls] Add a VFS yunq stub and register it.
This commit is contained in:
parent
f815eb5614
commit
48c7721b0f
11 changed files with 473 additions and 1 deletions
12
sys/victoriafalls/lib/victoriafalls/victoriafalls.yunq
Normal file
12
sys/victoriafalls/lib/victoriafalls/victoriafalls.yunq
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
interface VFS {
|
||||
method OpenFile(OpenFileRequest) -> (OpenFileResponse);
|
||||
}
|
||||
|
||||
message OpenFileRequest {
|
||||
string path;
|
||||
}
|
||||
|
||||
message OpenFileResponse {
|
||||
string path;
|
||||
capability memory;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue