Init Repo

This commit is contained in:
2026-02-28 03:22:04 +08:00
commit de59b57ee7
883 changed files with 156857 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
from fastapi import FastAPI, Request, Response
app = FastAPI(
title="LinkDesk API",
description="A comprehensive project management system for animation and VFX production",
version="1.0.0",
# lifespan=lifespan
)
@app.get("/")
def root():
return {"message": "VFX Project Management System API"}