mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 13:29:56 +02:00
10 lines
124 B
Python
10 lines
124 B
Python
from fastapi import APIRouter
|
|
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/")
|
|
def home():
|
|
return {"message": "Hello, World!"}
|