58 lines
1.1 KiB
Python
58 lines
1.1 KiB
Python
from .host import HostCreate, HostUpdate, HostOut
|
|
from .bootstrap_status import BootstrapStatusOut
|
|
from .task import TaskCreate, TaskUpdate, TaskOut
|
|
from .schedule import ScheduleCreate, ScheduleUpdate, ScheduleOut, ScheduleRunOut
|
|
from .log import LogCreate, LogOut
|
|
from .notification import (
|
|
NtfyConfig,
|
|
NtfyAction,
|
|
NotificationRequest,
|
|
NotificationResponse,
|
|
NotificationTemplates,
|
|
)
|
|
from .auth import (
|
|
LoginRequest,
|
|
Token,
|
|
TokenData,
|
|
UserBase,
|
|
UserCreate,
|
|
UserUpdate,
|
|
UserOut,
|
|
UserSetup,
|
|
PasswordChange,
|
|
AuthStatus,
|
|
)
|
|
|
|
__all__ = [
|
|
"HostCreate",
|
|
"HostUpdate",
|
|
"HostOut",
|
|
"BootstrapStatusOut",
|
|
"TaskCreate",
|
|
"TaskUpdate",
|
|
"TaskOut",
|
|
"ScheduleCreate",
|
|
"ScheduleUpdate",
|
|
"ScheduleOut",
|
|
"ScheduleRunOut",
|
|
"LogCreate",
|
|
"LogOut",
|
|
# Notifications
|
|
"NtfyConfig",
|
|
"NtfyAction",
|
|
"NotificationRequest",
|
|
"NotificationResponse",
|
|
"NotificationTemplates",
|
|
# Auth
|
|
"LoginRequest",
|
|
"Token",
|
|
"TokenData",
|
|
"UserBase",
|
|
"UserCreate",
|
|
"UserUpdate",
|
|
"UserOut",
|
|
"UserSetup",
|
|
"PasswordChange",
|
|
"AuthStatus",
|
|
]
|