Move responses to another module

This commit is contained in:
0880
2026-01-20 21:06:59 +03:30
parent 66f5eb102b
commit a7f0001659
3 changed files with 63 additions and 56 deletions

View File

@@ -1,9 +1,8 @@
from . import responses
from .slow import (
JSONAPI,
App,
Headers,
HTTPResponse,
JSONResponse,
Request,
redirect,
render,
@@ -12,10 +11,9 @@ from .slow import (
__all__ = [
"JSONAPI",
"App",
"HTTPResponse",
"JSONResponse",
"render",
"Request",
"Headers",
"redirect",
"responses",
]