mirror of
https://github.com/Adorable-Catgirl/Zorya-NEO.git
synced 2024-11-14 22:38:07 +11:00
11 lines
197 B
Lua
11 lines
197 B
Lua
local arcfs = {}
|
|
|
|
function arcfs.make(arc)
|
|
local proxy = {}
|
|
local function ni()return nil, "not implemented"end
|
|
proxy.remove = ni
|
|
proxy.makeDirectory = ni
|
|
function proxy.exists(path)
|
|
|
|
end
|
|
end |