mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
27 lines
362 B
Python
27 lines
362 B
Python
"""hyperglass Configuration."""
|
|
|
|
# Local
|
|
from .main import (
|
|
URL_DEV,
|
|
URL_PROD,
|
|
CONFIG_PATH,
|
|
STATIC_PATH,
|
|
REDIS_CONFIG,
|
|
params,
|
|
devices,
|
|
commands,
|
|
ui_params,
|
|
)
|
|
|
|
__all__ = (
|
|
"URL_DEV",
|
|
"URL_PROD",
|
|
"CONFIG_PATH",
|
|
"STATIC_PATH",
|
|
"REDIS_CONFIG",
|
|
"params",
|
|
"devices",
|
|
"commands",
|
|
"ui_params",
|
|
)
|