From c0d478922b5fa67ebe68f11f93042cc7289ac620 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B0=D1=80=D0=B0=D1=82=20=D0=A4=D0=B0=D0=B7=D1=8B?= =?UTF-8?q?=D0=BB=D0=BE=D0=B2?= Date: Tue, 12 May 2026 16:47:58 +0000 Subject: [PATCH] Add main.py --- main.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 main.py diff --git a/main.py b/main.py new file mode 100644 index 0000000..ff5178a --- /dev/null +++ b/main.py @@ -0,0 +1,3 @@ +def raw_text_to_card(text: str) -> str: + """Convert raw text to a flat card representation.""" + return f"Card: {text}" \ No newline at end of file