mirror of
https://github.com/eolinker/apinto
synced 2025-09-26 21:01:19 +08:00
29 lines
1.4 KiB
Go
29 lines
1.4 KiB
Go
package dubbo2_router
|
|
|
|
import (
|
|
"github.com/eolinker/apinto/plugin"
|
|
"github.com/eolinker/eosc"
|
|
)
|
|
|
|
type Config struct {
|
|
Listen int `json:"listen" yaml:"listen" title:"port" description:"使用端口" default:"80" label:"端口号" maximum:"65535"`
|
|
|
|
ServiceName string `json:"service_name" yaml:"service_name" label:"服务名"`
|
|
MethodName string `json:"method_name" yaml:"method_name" label:"方法名"`
|
|
Rules []Rule `json:"rules" yaml:"rules" label:"路由规则"`
|
|
Service eosc.RequireId `json:"service" yaml:"service" skill:"github.com/eolinker/apinto/service.service.IService" required:"true" label:"目标服务"`
|
|
Template eosc.RequireId `json:"template" yaml:"template" skill:"github.com/eolinker/apinto/template.template.ITemplate" required:"false" label:"插件模版"`
|
|
Disable bool `json:"disable" yaml:"disable" label:"禁用路由"`
|
|
Plugins plugin.Plugins `json:"plugins" yaml:"plugins" label:"插件配置"`
|
|
Retry int `json:"retry" label:"重试次数" yaml:"retry"`
|
|
TimeOut int `json:"time_out" label:"超时时间"`
|
|
Labels map[string]string `json:"labels" label:"路由标签"`
|
|
}
|
|
|
|
// Rule 规则
|
|
type Rule struct {
|
|
Type string `json:"type" yaml:"type" label:"类型" enum:"header"`
|
|
Name string `json:"name" yaml:"name" label:"参数名"`
|
|
Value string `json:"value" yaml:"value" label:"值规" `
|
|
}
|