rust parser ; yaaayy i can now claim this project as fast.

This commit is contained in:
2025-09-23 17:47:30 +02:00
parent c7f0fae19b
commit a149009559
7 changed files with 211 additions and 9 deletions

View File

@@ -32,3 +32,8 @@ class Logger:
print(f"[ INFO@{now} ]: {colorama.Fore.GREEN}{message}{colorama.Style.RESET_ALL}")
else:
print(f"[ INFO@{now} ]: {colorama.Fore.RED}{message}{colorama.Style.RESET_ALL}")
@staticmethod
def log_rust_usage(message: str) -> None:
now = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
print(f"{colorama.Fore.GREEN}[ RUST@{now} ]: {message}{colorama.Style.RESET_ALL}")