Packages

Elixir library for building Telegram bots with macro-based API

Current section

Files

Jump to
telegram_ex lib application.ex
Raw

lib/application.ex

defmodule TelegramEx.Application do
def start(_type, _args) do
Supervisor.start_link([EchoBot], strategy: :one_for_one)
end
end