Files
2026-09-19 15:00:19 +08:00

9 lines
206 B
Python

from fastapi import APIRouter
Product=APIRouter()
@Product.get("/shanping")
def shaning():
return {"message":"Hello World"}
@Product.post("/shaning")
def shaning():
return {"message":"Hello World"}