refactor(backend): 重命名后端项目为 gym-manage-api,修改包名为 cn.novalon.gym.manage

This commit is contained in:
张翔
2026-04-17 18:35:50 +08:00
parent 666189b676
commit deb961c427
916 changed files with 108360 additions and 38328 deletions
+20
View File
@@ -0,0 +1,20 @@
"""
安全测试套件初始化文件
作者: 张翔
日期: 2026-04-01
"""
from .test_jwt_security import TestJWTSecurity
from .test_sql_injection import TestSQLInjection
from .test_xss_protection import TestXSSProtection
from .test_auth_security import TestAuthenticationSecurity
from .test_permission_boundary import TestPermissionBoundary
__all__ = [
"TestJWTSecurity",
"TestSQLInjection",
"TestXSSProtection",
"TestAuthenticationSecurity",
"TestPermissionBoundary",
]