Fix packaging names

This commit is contained in:
OleSTEEP 2024-08-29 02:49:44 +03:00
parent 85df574d3c
commit e5fa49ad53
24 changed files with 24 additions and 24 deletions

14
unrenapk/printer.py Normal file
View file

@ -0,0 +1,14 @@
class Printer:
@staticmethod
def info(msg: str):
print(f"\033[100m[INFO] {msg}\033[49m")
@staticmethod
def warn(msg: str):
print(f"\033[93m[WARN]\033[0m {msg}\033[49m")
@staticmethod
def err(msg: str):
print(f"\033[31m[ERROR]\033[0m {msg} Exiting...\033[49m")
exit()