9 lines
175 B
Python
9 lines
175 B
Python
|
|
from .responses import Schemas as _responses
|
||
|
|
from .orm import Schemas as _orm
|
||
|
|
|
||
|
|
class Schemas:
|
||
|
|
|
||
|
|
responses = _responses
|
||
|
|
orm = _orm
|
||
|
|
|
||
|
|
__all__ = ["Schemas"]
|