2025-01-02 21:26:20 +00:00
|
|
|
import typer
|
|
|
|
|
|
|
|
from aides_spec.commands.build import app as build_app
|
2025-01-05 08:37:11 +00:00
|
|
|
from aides_spec.commands.checksums import app as checksums_app
|
2025-01-02 21:26:20 +00:00
|
|
|
from aides_spec.commands.create import app as create_app
|
|
|
|
|
|
|
|
app = typer.Typer()
|
|
|
|
|
|
|
|
app.add_typer(create_app)
|
|
|
|
app.add_typer(build_app)
|
2025-01-05 08:37:11 +00:00
|
|
|
app.add_typer(checksums_app)
|
2025-01-02 21:26:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
app()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|