Packages

Xhawn is a Discord voice and text channel bot that fetches memes from Reddit when prompted and plays your theme song when you entering voice channel - so everyone knows what the score is..

Current section

Files

Jump to
xhawn_bot lib xhawn application.ex
Raw

lib/xhawn/application.ex

defmodule Xhawn.Application do
use Application
def start(_type, _args) do
children = [
Xhawn.Supervisor
]
Supervisor.start_link(children, strategy: :one_for_one)
end
end