19 lines
355 B
Python
19 lines
355 B
Python
import typer
|
|
|
|
from aides_spec.commands.build import app as build_app
|
|
from aides_spec.commands.checksums import app as checksums_app
|
|
from aides_spec.commands.create import app as create_app
|
|
|
|
app = typer.Typer()
|
|
|
|
app.add_typer(create_app)
|
|
app.add_typer(build_app)
|
|
app.add_typer(checksums_app)
|
|
|
|
|
|
def main():
|
|
app()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|