File: __init__.py

package info (click to toggle)
sphinxcontrib-openapi 0.8.4-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 880 kB
  • sloc: python: 7,575; makefile: 23
file content (12 lines) | stat: -rw-r--r-- 231 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
"""Here lies OpenAPI renderers."""

from . import abc
from ._httpdomain_old import HttpdomainOldRenderer
from ._httpdomain import HttpdomainRenderer


__all__ = [
    "abc",
    "HttpdomainOldRenderer",
    "HttpdomainRenderer",
]