feat(apim-apps): first commit

This commit is contained in:
2026-06-29 14:22:37 +02:00
commit 7738a51d16
28 changed files with 1973 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import sys
ANSI = {
"green": "\033[32m",
"yellow": "\033[33m",
"red": "\033[31m",
"cyan": "\033[36m",
"bold": "\033[1m",
"reset": "\033[0m",
}
def _c(color: str, text: str) -> str:
if sys.stdout.isatty():
return f"{ANSI[color]}{text}{ANSI['reset']}"
return text