class EewJpNotify::CLI

Public Class Methods

run(args) click to toggle source
# File lib/eew_jp_notify/cli.rb, line 20
def self.run(args)
  self.new.run(args)
end

Public Instance Methods

run(args) click to toggle source
# File lib/eew_jp_notify/cli.rb, line 23
def run(args)
  params = Params.new(args)
  EewJpNotify::Main.new.execute(params.config)
end