Should be fully separated now. Next up: How many times will it break before it runs?
[halbot.git] / hal.py
blob570b4d13d18b815240cf6d52ea95cfd72c366fb9
1 #!/usr/bin/env python
2 import thread
4 import globals, connection, whois, basic_commands, web, factoids, reminders
6 from connection import debug_console, handle_events
7 from reminders import run_reminders
8 thread.start_new_thread(handle_events, ())
9 thread.start_new_thread(debug_console, ())
10 thread.start_new_thread(run_reminders, ())