python3-carom-client/carom/const.py
2018-11-22 20:47:36 +01:00

7 lines
335 B
Python

from pkg_resources import resource_string
DEFAULT_CONFIG = resource_string(__name__, 'client.ini').decode()
"""Default configfile, that is used as a Fallback if no other configuration exists."""
CONFIG_FILES = ('/boot/carom-client.conf', )
"""Order of resolution of Config Files. Files are tried in order, first one found is used."""