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

14
omnibot.example.exs Normal file
View File

@@ -0,0 +1,14 @@
alias Omnibot.Config
config = %Config {
nick: "omnibot_testing",
server: "irc.bonerjamz.us",
port: 6667,
ssl: false,
modules: [
{Omnibot.Contrib.Fortune, channels: ["#idleville"]},
],
module_paths: [{"modules", recurse: true}]
}