From ead4ec1340555569e00919891383e05dca839b01 Mon Sep 17 00:00:00 2001 From: Malfurious Date: Fri, 12 Jan 2024 14:28:26 -0500 Subject: util: Promote from module to package We would like to move additional modules under the namespace of "util" to clean up the top-level "sploit" package. To start, the functions from the previous util module are moved. Given the package is named "util" the module is renamed to "cmd" to somewhat match the theme of the contained functions. Per the previous commits, these functions are now exposed via the util package as well. Signed-off-by: Malfurious --- sploit/util/__init__.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 sploit/util/__init__.py (limited to 'sploit/util/__init__.py') diff --git a/sploit/util/__init__.py b/sploit/util/__init__.py new file mode 100644 index 0000000..9103509 --- /dev/null +++ b/sploit/util/__init__.py @@ -0,0 +1 @@ +from .cmd import * -- cgit v1.2.3 From 074a15310b8bbeeeeb00bf5ab5877c12f1ca1861 Mon Sep 17 00:00:00 2001 From: Malfurious Date: Fri, 12 Jan 2024 16:26:03 -0500 Subject: log: Move to sploit.util package Signed-off-by: Malfurious --- sploit/util/__init__.py | 1 + 1 file changed, 1 insertion(+) (limited to 'sploit/util/__init__.py') diff --git a/sploit/util/__init__.py b/sploit/util/__init__.py index 9103509..32a079b 100644 --- a/sploit/util/__init__.py +++ b/sploit/util/__init__.py @@ -1 +1,2 @@ from .cmd import * +from .log import * -- cgit v1.2.3