Sync computers

This commit is contained in:
2026-02-28 18:55:10 +01:00
parent c3eb93e701
commit 9a983c56f3
29 changed files with 1564 additions and 28 deletions

9
crates/shared/src/fs.rs Normal file
View File

@@ -0,0 +1,9 @@
pub struct File {
fd: u64,
}
impl File {
pub unsafe fn new(fd: u64) -> Self {
Self { fd }
}
}