dc-securex 2.15.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dc-securex might be problematic. Click here for more details.
- dc_securex-2.15.3.dist-info/METADATA +653 -0
- dc_securex-2.15.3.dist-info/RECORD +17 -0
- dc_securex-2.15.3.dist-info/WHEEL +5 -0
- dc_securex-2.15.3.dist-info/licenses/LICENSE +21 -0
- dc_securex-2.15.3.dist-info/top_level.txt +1 -0
- securex/__init__.py +18 -0
- securex/backup/__init__.py +5 -0
- securex/backup/manager.py +693 -0
- securex/client.py +556 -0
- securex/handlers/__init__.py +8 -0
- securex/handlers/channel.py +97 -0
- securex/handlers/member.py +110 -0
- securex/handlers/role.py +74 -0
- securex/models.py +123 -0
- securex/utils/__init__.py +5 -0
- securex/utils/punishment.py +124 -0
- securex/utils/whitelist.py +129 -0
securex/__init__.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"""
|
|
2
|
+
SecureX Anti-Nuke SDK
|
|
3
|
+
Backend-only Discord anti-nuke protection.
|
|
4
|
+
Developers provide their own UI.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
__version__ = "1.0.0"
|
|
8
|
+
__author__ = "SecureX Team"
|
|
9
|
+
|
|
10
|
+
from .client import SecureX
|
|
11
|
+
from .models import ThreatEvent, BackupInfo, RestoreResult
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
"SecureX",
|
|
15
|
+
"ThreatEvent",
|
|
16
|
+
"BackupInfo",
|
|
17
|
+
"RestoreResult",
|
|
18
|
+
]
|