Add models module
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-01-31 17:10:17 +00:00
parent 7d3a5c5f09
commit da56f82ff5

View File

@@ -0,0 +1,6 @@
"""Models package."""
from docgen.models.endpoint import Endpoint, Parameter, Response, HTTPMethod, ParameterIn
from docgen.models.config import DocConfig, OutputFormat, Theme
__all__ = ["Endpoint", "Parameter", "Response", "HTTPMethod", "ParameterIn", "DocConfig", "OutputFormat", "Theme"]