Initial commit: CodeMap v0.1.0 - CLI tool for code analysis and diagram generation
Some checks failed
CI / build (push) Has been cancelled
CI / test (push) Has been cancelled

This commit is contained in:
2026-01-30 12:18:56 +00:00
parent b79e70d193
commit 6c75d08b3b

8
codemap/__main__.py Normal file
View File

@@ -0,0 +1,8 @@
import typer
from codemap.cli.app import app
def main():
app()
if __name__ == "__main__":
main()