aides-spec/aides_spec/main.py
2025-01-03 00:26:20 +03:00

17 lines
263 B
Python

import typer
from aides_spec.commands.build import app as build_app
from aides_spec.commands.create import app as create_app
app = typer.Typer()
app.add_typer(create_app)
app.add_typer(build_app)
def main():
app()
if __name__ == "__main__":
main()