Created
June 9, 2019 11:22
-
-
Save Ironjanowar/44c930b2d3ff8a0292a13027f8a938fe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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