mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-02-01 12:13:12 +08:00
13 lines
364 B
Python
13 lines
364 B
Python
"""
|
|
通用模块视图导出
|
|
|
|
包含:
|
|
- 认证相关视图:登录、登出、用户信息、修改密码
|
|
- 系统日志视图:实时日志查看
|
|
"""
|
|
|
|
from .auth_views import LoginView, LogoutView, MeView, ChangePasswordView
|
|
from .system_log_views import SystemLogsView
|
|
|
|
__all__ = ['LoginView', 'LogoutView', 'MeView', 'ChangePasswordView', 'SystemLogsView']
|