18 lines
263 B
Python
18 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()
|