Skip to content

Instantly share code, notes, and snippets.

@Ironjanowar
Created June 9, 2019 11:22
Show Gist options
  • Save Ironjanowar/44c930b2d3ff8a0292a13027f8a938fe to your computer and use it in GitHub Desktop.
Save Ironjanowar/44c930b2d3ff8a0292a13027f8a938fe to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment