22 lines
344 B
Go
22 lines
344 B
Go
package proto
|
|
|
|
import (
|
|
"service/api/base"
|
|
"service/dbstruct"
|
|
)
|
|
|
|
// op 列表
|
|
type ApiListByKeyReq struct {
|
|
base.BaseRequest
|
|
ConfigKey string `json:"config_key"`
|
|
}
|
|
|
|
type ApiListByKeyData struct {
|
|
AppConfig *dbstruct.AppConfig `json:"app_config"`
|
|
}
|
|
|
|
type ApiListByKeyResp struct {
|
|
base.BaseResponse
|
|
Data *ApiListByKeyData `json:"data"`
|
|
}
|