Initial commit with IRC and bot example.

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2020-06-12 17:29:35 -04:00
commit 6340936895
20 changed files with 793 additions and 0 deletions

10
lib/omnibot.ex Normal file
View File

@@ -0,0 +1,10 @@
defmodule Omnibot do
@moduledoc false
use Application
@impl true
def start(_type, _args) do
Omnibot.Supervisor.start_link(name: Omnibot.Supervisor)
end
end