Add size fonction to file RPC server

This commit is contained in:
pjht 2024-06-09 18:32:13 -05:00
parent 1687e5cc68
commit f089dbf5d0
Signed by: pjht
GPG Key ID: 7B5F6AFBEC7EE78E

View File

@ -20,6 +20,10 @@ impl file_rpc::Server for Serv {
fn close(&self, _fd: u64) {
}
fn size(&self, _fd: u64) -> Option<u64> {
None
}
}
fn main() {