first commit

This commit is contained in:
2024-03-26 13:17:04 -04:00
commit de448a35d1
22 changed files with 156 additions and 0 deletions

21
app/main.py Normal file
View File

@@ -0,0 +1,21 @@
from fastapi import FastAPI
from app.routers import printstatus, command
app = FastAPI()
app.include_router(printstatus.router)
app.include_router(command.router)
@app.get("/")
def read_root():
return {"Hello": "World"}