mirror of
https://github.com/LBRYFoundation/lbry-sdk.git
synced 2025-09-02 10:15:14 +00:00
settings will prefer, in order: -defaults -settings in config file -settings given as environmental variables -settings given as command line args
7 lines
No EOL
183 B
Python
7 lines
No EOL
183 B
Python
import logging
|
|
from conf import Config
|
|
|
|
__version__ = "0.6.4"
|
|
version = tuple(__version__.split('.'))
|
|
settings = Config()
|
|
logging.getLogger(__name__).addHandler(logging.NullHandler()) |