9 lines
206 B
Python
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"} |