Initial upload of ai-code-audit-cli project
Some checks failed
CI / test (3.10) (push) Has been cancelled
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / test (3.9) (push) Has been cancelled
CI / build (push) Has been cancelled
CI / release (push) Has been cancelled

This commit is contained in:
2026-02-03 10:29:56 +00:00
parent 47aeb8bc3e
commit 50d411c3b9

20
src/main.py Normal file
View File

@@ -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()