Init Repo
This commit is contained in:
@@ -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"}
|
||||
|
||||
Reference in New Issue
Block a user