Source code for toxicslave

# -*- coding: utf-8 -*-

# pylint: disable-all

from toxiccore.conf import Settings

__version__ = '0.13.2'


ENVVAR = 'TOXICSLAVE_SETTINGS'
DEFAULT_SETTINGS = 'toxicslave.conf'

settings = None


[docs]def create_settings(): global settings settings = Settings(ENVVAR, DEFAULT_SETTINGS)