Files
rbot/lib/commands/weather.rb
takumi091111 6781dff326 first commit
2017-09-25 09:38:07 +09:00

11 lines
227 B
Ruby

module Bot
module DiscordCommands
module WeatherCommands
extend Discordrb::Commands::CommandContainer
command(:weather) do |event|
nil
end
end
end
end