22 lines
442 B
Python
22 lines
442 B
Python
|
|
"""Hub API schemas."""
|
||
|
|
|
||
|
|
from app.schemas.client import ClientCreate, ClientResponse, ClientUpdate
|
||
|
|
from app.schemas.instance import (
|
||
|
|
ActivationError,
|
||
|
|
ActivationRequest,
|
||
|
|
ActivationResponse,
|
||
|
|
InstanceCreate,
|
||
|
|
InstanceResponse,
|
||
|
|
)
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"ClientCreate",
|
||
|
|
"ClientResponse",
|
||
|
|
"ClientUpdate",
|
||
|
|
"InstanceCreate",
|
||
|
|
"InstanceResponse",
|
||
|
|
"ActivationRequest",
|
||
|
|
"ActivationResponse",
|
||
|
|
"ActivationError",
|
||
|
|
]
|