1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

18 lines
611 B
Python
Raw Normal View History

"""Configuration validation entry point."""
# Project Imports
from hyperglass.configuration.models._utils import HyperglassModel
from hyperglass.configuration.models.branding import Branding
from hyperglass.configuration.models.features import Features
from hyperglass.configuration.models.general import General
from hyperglass.configuration.models.messages import Messages
2019-10-04 16:54:32 -07:00
class Params(HyperglassModel):
"""Validation model for all configuration variables."""
general: General = General()
features: Features = Features()
branding: Branding = Branding()
messages: Messages = Messages()