2020-03-13 08:01:05 +11:00
|
|
|
local arcfs = {}
|
|
|
|
|
|
|
|
function arcfs.make(arc)
|
|
|
|
local proxy = {}
|
|
|
|
local function ni()return nil, "not implemented"end
|
2020-03-16 03:43:42 +11:00
|
|
|
proxy.remove = ni
|
|
|
|
proxy.makeDirectory = ni
|
2020-03-13 08:01:05 +11:00
|
|
|
function proxy.exists(path)
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|