mirror of
https://github.com/m4rcel-lol/m5rcode.git
synced 2025-12-06 19:13:57 +05:30
7 lines
155 B
Python
7 lines
155 B
Python
from colorama import Fore
|
|
|
|
class ExitCommand:
|
|
def run(self):
|
|
print(Fore.YELLOW + "Bye!")
|
|
return True # Signals to shell to exit
|