Files
SlowAPI/slow/__init__.py
2026-01-20 19:15:57 +03:30

22 lines
273 B
Python

from .slow import (
JSONAPI,
App,
Headers,
HTTPResponse,
JSONResponse,
Request,
redirect,
render,
)
__all__ = [
"JSONAPI",
"App",
"HTTPResponse",
"JSONResponse",
"render",
"Request",
"Headers",
"redirect",
]