diff --git a/pyproject.toml b/pyproject.toml index 5f443a2..a6d1cb0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "schema_validator" -version = "0.2.2" +version = "0.2.3" description = "A flask/quart extension to provide schema validation with pydantic." authors = ["hs "] classifiers = [ diff --git a/schema_validator/quart/__init__.py b/schema_validator/quart/__init__.py index ac51dfe..3359cb3 100644 --- a/schema_validator/quart/__init__.py +++ b/schema_validator/quart/__init__.py @@ -1,8 +1,9 @@ -from .api import openapi, swagger_ui +from .api import openapi, swagger_ui, convert_model_result from .validation import validate __all__ = [ "openapi", "swagger_ui", - "validate" + "validate", + "convert_model_result" ]