watbot/osrc/watbot.py
alex 289684b0f1 sorry for rehosting ur stuff (。◕ ‿ ◕。)
Added original source
Fixed readme typo (I fat fingered your username again whoops)
Fiddling with golang config
2018-10-20 00:45:25 +01:00

16 lines
318 B
Python

#!/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()