diff --git a/hyperglass/__init__.py b/hyperglass/__init__.py index 58294f6..f4494fa 100644 --- a/hyperglass/__init__.py +++ b/hyperglass/__init__.py @@ -4,7 +4,7 @@ https://github.com/checktheroads/hyperglass The Clear BSD License -Copyright (c) 2019 Matthew Love +Copyright (c) 2020 Matthew Love All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/hyperglass/execution/__init__.py b/hyperglass/execution/__init__.py index d200351..147ca56 100644 --- a/hyperglass/execution/__init__.py +++ b/hyperglass/execution/__init__.py @@ -8,4 +8,3 @@ input, executes the commands/calls, returns the output to front end. # flake8: noqa: F401 from hyperglass.execution import construct from hyperglass.execution import execute -from hyperglass.execution import validate diff --git a/hyperglass/models/__init__.py b/hyperglass/models/__init__.py new file mode 100644 index 0000000..be019c4 --- /dev/null +++ b/hyperglass/models/__init__.py @@ -0,0 +1,10 @@ +"""Query & Response Validation Models.""" + +# Project Imports +# flake8: noqa: F401 + +from hyperglass.models import query +from hyperglass.models import response +from hyperglass.models import rfc8522 +from hyperglass.models import types +from hyperglass.models import validators diff --git a/hyperglass/models/validators.py b/hyperglass/models/validators.py index e794b42..af8c0d3 100644 --- a/hyperglass/models/validators.py +++ b/hyperglass/models/validators.py @@ -1,3 +1,5 @@ +"""Input validation functions for submitted queries.""" + # Standard Library Imports import operator import re