Add initial project structure with main application and transport layer

This commit is contained in:
2026-08-01 15:26:44 -06:00
parent 34a3f17848
commit f3ae82351f
10 changed files with 169 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import typer
from src import severcli
app = typer.Typer(help="An awesome task manager CLI.")
@app.add_typer(severcli())
def sever():
pass
if __name__ == "__main__":
app()