From f58736f27ddc06419f1f6ca3f287c7f17b37a474 Mon Sep 17 00:00:00 2001 From: Richard Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Thu, 23 Jun 2022 12:22:05 +0200 Subject: [PATCH] Delete octosuite --- octosuite | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 octosuite diff --git a/octosuite b/octosuite deleted file mode 100644 index 4a46ea4..0000000 --- a/octosuite +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env python3 - -import logging -from utilities.colors import Color -from utilities.misc import Banner -from core.main import Octosuite, Attributes, logMsg - -print(Banner.nameLogo) -if __name__ == '__main__': - try: - Octosuite().onStart() - - except KeyboardInterrupt: - logging.warning(logMsg.Ctrl) - print(Attributes.warning, logMsg.Ctrl) - - except Exception as e: - logging.error(logMsg.Error.format(e)) - print(Attributes.error, logMsg.Error.format(f'{Color.red}{e}{Color.reset}'))