289684b0f1
Added original source Fixed readme typo (I fat fingered your username again whoops) Fiddling with golang config
16 lines
318 B
Python
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()
|