move rfwfs into rt

This commit is contained in:
2025-02-26 14:18:05 -05:00
parent 22df34ed43
commit f7e678190d
8 changed files with 5 additions and 5 deletions

19
src/rt/rfwfs/tree.ts Normal file
View File

@ -0,0 +1,19 @@
import { Entry, Permissions } from "./core"
const user = [
Entry("about_me.txt", "about me inside", Permissions.rw),
Entry("services.txt", "services inside", Permissions.rw),
Entry("hi", [], Permissions.rw)
]
const home = [
Entry("user", user, Permissions.rw)
]
const root = [
Entry("home", home, Permissions.r),
Entry("bin", {}, Permissions.r),
]
const fstree = [
Entry("/", root, Permissions.r)
]
export default fstree