mirror of
https://git.shadowkat.net/izaya/OC-PsychOS2.git
synced 2024-11-13 00:27:00 -05:00
10 lines
200 B
Lua
10 lines
200 B
Lua
local rpc = require "rpc"
|
|
local tA = {...}
|
|
local host, rpath, lpath = tA[1], tA[2], tA[3]
|
|
|
|
local px = rpc.proxy(host,rpath.."_")
|
|
function px.getLabel()
|
|
return host..":"..rpath
|
|
end
|
|
fs.mount(lpath,px)
|