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"` }