26 lines
483 B
Plaintext
26 lines
483 B
Plaintext
syntax = "v1"
|
|
|
|
info (
|
|
title: "产品服务"
|
|
desc: "产品服务"
|
|
author: "Liangzai"
|
|
email: "2440983361@qq.com"
|
|
version: "v1"
|
|
)
|
|
import (
|
|
"product/product.api"
|
|
)
|
|
@server (
|
|
prefix: api/v1/product
|
|
group: product
|
|
jwt: JwtAuth
|
|
)
|
|
service main {
|
|
@handler GetProductByID
|
|
get /:id (GetProductByIDRequest) returns (ProductResponse)
|
|
|
|
@handler GetProductByEn
|
|
get /en/:product_en (GetProductByEnRequest) returns (ProductResponse)
|
|
}
|
|
|