# synarere -- a trivial, highly modular IRC bot.
# Copyright (C) 2010 Michael Rodriguez.
# Rights to this code are documented in ../docs/LICENSE.

'''Global variables.'''

# Configuration file. This is overridden by the CLO switch -c (--config).
config_file = 'conf/synarere.conf'

# Fork into the background. We do so by default; overridden by the CLO switch -n (--nofork).
fork = True

# Debug mode.
debug = False

# Loaded modules dictionary.
modules_loaded = []

# Connection dictionary.
conns = []
