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.

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
+ ]
@@ -0,0 +1,5 @@
1
+ """Backup package"""
2
+
3
+ from .manager import BackupManager
4
+
5
+ __all__ = ['BackupManager']