Fix build after removing a bunch of stuff.

This commit is contained in:
Drew Galbraith 2025-05-05 21:04:42 -07:00
parent dc801786b1
commit c645405ca8
7 changed files with 55 additions and 6 deletions

View file

@ -0,0 +1,24 @@
interface VFS {
method OpenFile(OpenFileRequest) -> (OpenFileResponse);
method GetDirectory(GetDirectoryRequest) -> (Directory);
}
message OpenFileRequest {
string path;
}
message OpenFileResponse {
string path;
u64 size;
capability memory;
}
message GetDirectoryRequest {
string path;
}
message Directory {
// , separated list of filenames until we have repeated strings.
string filenames;
}