MCPcopy Index your code
hub / github.com/dobin/SuperMega / init

Method init

model/project.py:20–28  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

18
19
20 def init(self) -> bool:
21 self.payload: Payload = Payload(self.settings.get_payload_path())
22 self.injectable: Injectable = Injectable(self.settings.get_inject_exe_in())
23
24 if not self.payload.init():
25 return False
26 if not self.injectable.init():
27 return False
28 return True
29
30
31 def print(self):

Callers 2

start_realFunction · 0.95
start_projectFunction · 0.95

Calls 4

PayloadClass · 0.90
InjectableClass · 0.90
get_payload_pathMethod · 0.80
get_inject_exe_inMethod · 0.80

Tested by

no test coverage detected