Skip to content

Instantly share code, notes, and snippets.

@Ironjanowar
Created June 9, 2019 11:11
Show Gist options
  • Save Ironjanowar/2be5c758e0d6c7abbe31dbb0c0df57e2 to your computer and use it in GitHub Desktop.
Save Ironjanowar/2be5c758e0d6c7abbe31dbb0c0df57e2 to your computer and use it in GitHub Desktop.
defmodule NiceBot.Application do
use Application
def start(_type, _args) do
token = "378322483:AAFdz_7lJt69S5HO7ep2GgBqTc36AIo3Ouc"
children = [
ExGram,
{NiceBot.Bot, [method: :polling, token: token]}
]
opts = [strategy: :one_for_one, name: NiceBot.Supervisor]
Supervisor.start_link(children, opts)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment