We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afa6713 commit 734e71cCopy full SHA for 734e71c
1 file changed
rickshell.py
@@ -0,0 +1,17 @@
1
+import sys
2
+
3
+from interface.colors import Colors
4
+from interface.console import ConsoleInterface
5
6
7
+def main() -> None:
8
+ console = ConsoleInterface()
9
+ try:
10
+ console.cmdloop()
11
+ except KeyboardInterrupt:
12
+ print(f"\n{Colors.warn('[*] Interrupted. Exiting RickShell.')}")
13
+ sys.exit(0)
14
15
16
+if __name__ == '__main__':
17
+ main()
0 commit comments