begin work on 2.0
[synarere.git] / core / var.py
blob9bff6b7a9714ce92cbdaf0ea52abfad61e09486f
1 # synarere -- a highly modular and stable IRC bot.
2 # Copyright (C) 2010 Michael Rodriguez.
3 # Rights to this code are documented in docs/LICENSE.
5 '''Global variables.'''
7 # Configuration file.
8 config_file = 'conf/synarere.conf'
10 # Fork into the background? We do so by default.
11 fork = True
13 # Configuration parser and logger instance.
14 conf, log = None, None
16 # Servers, connections, modules loaded, dead connections, and timers list.
17 servers, conns, modules_loaded, dead_conns, timers = [], [], [], [], []
19 # Our version.
20 version = '2.0'