19 lines
298 B
Plaintext
19 lines
298 B
Plaintext
|
syntax = "v1"
|
||
|
|
||
|
info (
|
||
|
title: "云仓服务"// TODO: add title
|
||
|
desc: // TODO: add description
|
||
|
author: "daming"
|
||
|
email: ""
|
||
|
)
|
||
|
import "basic.api"
|
||
|
|
||
|
service canteen {
|
||
|
//提取云仓货物
|
||
|
@handler TakeHandler
|
||
|
post /inventory/take(TakeReq) returns (response);
|
||
|
}
|
||
|
//提取云仓货物
|
||
|
type TakeReq{
|
||
|
|
||
|
}
|