qasim/map.rb

13 lines
111 B
Ruby

module SshfsMapper
class Map
def initialize
@host = nil
@port = 22
@user = nil
end
end
end