refactor: syntax, types, logging, cleanup

This commit is contained in:
Dobin Rutishauser
2025-06-09 08:59:36 +02:00
parent 015ec55975
commit 4c49f2d816
13 changed files with 120 additions and 85 deletions
+6 -3
View File
@@ -28,9 +28,12 @@ class Project():
self.project_exe: str = ""
def init(self):
self.payload.init()
self.injectable.init()
def init(self) -> bool:
if not self.payload.init():
return False
if not self.injectable.init():
return False
return True
def prepare_project(project_name, settings):