From a9034f8264f6471cb96d47f902a5fe8d769fb415 Mon Sep 17 00:00:00 2001 From: Edern Deneuville Date: Fri, 11 Sep 2026 11:58:32 +0200 Subject: [PATCH] Initial ai typewriter implementation --- main.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 main.py diff --git a/main.py b/main.py new file mode 100644 index 0000000..250122c --- /dev/null +++ b/main.py @@ -0,0 +1,4 @@ +from ai_typewriter.app import main + +if __name__ == "__main__": + raise SystemExit(main())