14 lines
318 B
Python
14 lines
318 B
Python
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"}
|
|
|