Packages

A hubot-like bot framework for chatops.

Current section

Files

Jump to
hexbot lib hexbot.ex
Raw

lib/hexbot.ex

defmodule Hexbot do
use Application
def start(_type, _args) do
import Supervisor.Spec, warn: false
children = [
]
opts = [strategy: :one_for_one, name: Hexbot.Supervisor]
Supervisor.start_link(children, opts)
end
end