1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-31 14:29:27 +00:00
thatmattlove-hyperglass/hyperglass/configuration/models/params.py
2019-12-29 23:57:39 -07:00

17 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()