class Terminalwire::Server::Resource::Directory
def create(path)
def create(path) command("create", path: path.to_s) end
def delete(path)
def delete(path) command("delete", path: path.to_s) end
def exist?(path)
def exist?(path) command("exist", path: path.to_s) end
def list(path)
def list(path) command("list", path: path.to_s) end