mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-13 15:57:14 +03:00
1. So now they're only defined in one place. 2. config.py does an import of them, and `from config import ...` then chains through, so no need to update other users. 3. No need to ' # noqa E402' the killswitch/config imports now.
15 lines
375 B
Python
15 lines
375 B
Python
"""
|
|
All constants for the application.
|
|
|
|
This file should contain all constants that the application uses, but that
|
|
means migrating the existing ones, so for now it's only the ones that we've
|
|
found necessary to move out of other files.
|
|
"""
|
|
|
|
# config.py
|
|
appname = 'EDMarketConnector'
|
|
applongname = 'E:D Market Connector'
|
|
|
|
# protocol.py
|
|
protocolhandler_redirect = 'edmc://auth'
|