From 50d411c3b90fee5c194a334509106f83f2e46a86 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Tue, 3 Feb 2026 10:29:56 +0000 Subject: [PATCH] Initial upload of ai-code-audit-cli project --- src/main.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/main.py diff --git a/src/main.py b/src/main.py new file mode 100644 index 0000000..666a412 --- /dev/null +++ b/src/main.py @@ -0,0 +1,20 @@ +"""Main entry point for AI Code Audit CLI.""" + +import sys +from typing import Optional + +import typer +from rich.console import Console + +from .cli import app + +console = Console() + + +def main() -> None: + """Main entry point for the audit CLI.""" + app() + + +if __name__ == "__main__": + main()