diff options
author | alex | 2018-10-20 00:40:15 +0100 |
---|---|---|
committer | alex | 2018-10-20 00:45:25 +0100 |
commit | 289684b0f117181c03e4e5ef6616d574da9a1981 (patch) | |
tree | 1a803992f7bec0a46b5838141c72b5192c14ecc6 /osrc/watbot.py | |
parent | 64cbb5254ad6308e4dab42cc1e3fdcea9d8d6893 (diff) | |
download | watbot-289684b0f117181c03e4e5ef6616d574da9a1981.tar.gz watbot-289684b0f117181c03e4e5ef6616d574da9a1981.tar.bz2 watbot-289684b0f117181c03e4e5ef6616d574da9a1981.zip |
sorry for rehosting ur stuff (。◕ ‿ ◕。)
Added original source
Fixed readme typo (I fat fingered your username again whoops)
Fiddling with golang config
Diffstat (limited to 'osrc/watbot.py')
-rw-r--r-- | osrc/watbot.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/osrc/watbot.py b/osrc/watbot.py new file mode 100644 index 0000000..44253fc --- /dev/null +++ b/osrc/watbot.py @@ -0,0 +1,15 @@ +#!/usr/bin/python + +# LICENSE: DO WAT YOU WANT WITH THIS! + + +from watbot_config import WatbotConfig +from watbot_db import WatbotDB +from watbot_game import WatbotGame +from watbot_irc import WatbotIRC + +db = WatbotDB(WatbotConfig) +game = WatbotGame(WatbotConfig, db) +irc = WatbotIRC(WatbotConfig, game) + +irc.main_loop() |