added colorama

This commit is contained in:
Gamosoft 2026-01-02 16:57:15 +01:00
parent c332f07f5c
commit e742d433fc
2 changed files with 7 additions and 1 deletions

View File

@ -8,4 +8,4 @@ cryptography==41.0.7
bcrypt==4.1.2 bcrypt==4.1.2
itsdangerous==2.1.2 itsdangerous==2.1.2
slowapi==0.1.9 slowapi==0.1.9
colorama==0.4.6

6
run.py
View File

@ -9,6 +9,12 @@ import os
import subprocess import subprocess
from pathlib import Path from pathlib import Path
try:
import colorama
colorama.just_fix_windows_console()
except ImportError:
colorama = None
def main(): def main():
print("🚀 Starting NoteDiscovery...\n") print("🚀 Starting NoteDiscovery...\n")