Adding printer logic

This commit is contained in:
João Moura
2024-02-10 00:57:04 -08:00
parent c226dafd0d
commit 6ea21e95b6
2 changed files with 10 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
from .i18n import I18N
from .logger import Logger
from .printer import Printer
from .prompts import Prompts
from .rpm_controller import RPMController

View File

@@ -0,0 +1,9 @@
class Printer:
def print(self, content: str, color: str):
if color == "yellow":
self._print_yellow(content)
else:
print(content)
def _print_yellow(self, content):
print("\033[93m {}\033[00m".format(content))