From d28d5a578a7a957c78fa2aae737dca5f2e0430f3 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Thu, 26 Jun 2025 06:16:12 +0100 Subject: [PATCH] add styler module upd entry point import --- src/simple_recorder/__init__.py | 2 +- src/simple_recorder/styler.py | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 src/simple_recorder/styler.py diff --git a/src/simple_recorder/__init__.py b/src/simple_recorder/__init__.py index 0565668..eb2366f 100644 --- a/src/simple_recorder/__init__.py +++ b/src/simple_recorder/__init__.py @@ -1,3 +1,3 @@ -from .app import run +from .cli import run __all__ = ["run"] diff --git a/src/simple_recorder/styler.py b/src/simple_recorder/styler.py new file mode 100644 index 0000000..adf1d91 --- /dev/null +++ b/src/simple_recorder/styler.py @@ -0,0 +1,4 @@ +import clypi + +highlight = clypi.Styler(fg="green") +error = clypi.Styler(fg="red", bold=True)