Files

9 lines
206 B
Python
Raw Permalink Normal View History

2026-09-19 15:00:19 +08:00
from fastapi import APIRouter
Product=APIRouter()
@Product.get("/shanping")
def shaning():
return {"message":"Hello World"}
@Product.post("/shaning")
def shaning():
return {"message":"Hello World"}