Skip to content

Instantly share code, notes, and snippets.

@osyo-manga
Last active October 13, 2021 10:12
Show Gist options
  • Save osyo-manga/b6f6fb633a27d65c91982257c0ac4b65 to your computer and use it in GitHub Desktop.
Save osyo-manga/b6f6fb633a27d65c91982257c0ac4b65 to your computer and use it in GitHub Desktop.
module Akaden
class Station < Struct.new(:name)
def info
end
def timetable
end
end
def self.get(name)
Station.new(name)
end
def self.shin_hamamatsu
Station.new(:shin_hamamatsu)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment