runewall 1.0.0__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.
runewall/__init__.py ADDED
@@ -0,0 +1,13 @@
1
+ """Public package surface for the current Runewall core."""
2
+
3
+ from .core.interceptor import protect_file_create, protect_file_delete, protect_file_write
4
+ from .core.log import ActionLog
5
+ from .translate import read_url
6
+
7
+ __all__ = [
8
+ "ActionLog",
9
+ "protect_file_create",
10
+ "protect_file_delete",
11
+ "protect_file_write",
12
+ "read_url",
13
+ ]
runewall/cli/.gitkeep ADDED
File without changes
@@ -0,0 +1 @@
1
+ """CLI package for Runewall."""