Added new cli parser

This commit is contained in:
2024-09-22 20:07:09 -04:00
parent 9b0fe2183b
commit c1bdce49a8
7 changed files with 60 additions and 6 deletions
+2 -1
View File
@@ -5,7 +5,8 @@ class CLIAgent:
def __init__(self, mainAgent) -> None:
self.isRunning = False
self.logger = Logger("CliAgent")
if (not mainAgent):
if (not mainAgent):
raise Exception("Main agent not found...")
self.mainAgent = mainAgent