defmodule NiceBot.Bot do @bot :nice_bot use ExGram.Bot, name: @bot def bot(), do: @bot def handle({:command, "start", _msg}, context) do answer(context, "Hi!") end end