1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-13 07:47:14 +03:00
EDMarketConnector/constants.py
Athanasius c3663d8be8 Move the 'duplicate' constants into a new constants.py
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.
2021-01-18 14:43:45 +00:00

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'