new command new)

This commit is contained in:
2026-02-10 13:41:51 +03:00
parent 18a8376469
commit 6ed1d35e8a
4 changed files with 119 additions and 3 deletions
+2 -1
View File
@@ -1,12 +1,13 @@
from typer import Typer
from .commands import run_handler, init_handler
from .commands import run_handler, init_handler, new_handler
def main():
app = Typer()
app.command("run")(run_handler)
app.command("init")(init_handler)
app.command("new")(new_handler)
app()
if __name__ == '__main__':