1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
2019-12-29 23:57:39 -07:00

18 lines
611 B
Python

"""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
class Params(HyperglassModel):
"""Validation model for all configuration variables."""
general: General = General()
features: Features = Features()
branding: Branding = Branding()
messages: Messages = Messages()