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

"""
This module holds the variables that are needed globally.
We know, we know... global variables are the root of all
that is evil. But sometimes, global variables are just plain
necessary.
"""

# Configuration file. This is the default,
# in case it is not specified via the CLO switch.
config_file = 'conf/synarere.conf'

# Forking into the background?
fork = True

# Debug mode?
debug = False

# List of connections.
conns = []

# List of modules loaded.
modules_loaded = []
