From 6c75d08b3bcfd41f2b374336ebb54ec4c022ece3 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 12:18:56 +0000 Subject: [PATCH] Initial commit: CodeMap v0.1.0 - CLI tool for code analysis and diagram generation --- codemap/__main__.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 codemap/__main__.py diff --git a/codemap/__main__.py b/codemap/__main__.py new file mode 100644 index 0000000..97ba911 --- /dev/null +++ b/codemap/__main__.py @@ -0,0 +1,8 @@ +import typer +from codemap.cli.app import app + +def main(): + app() + +if __name__ == "__main__": + main()