drone_plugin/go_handler/go_service_handler.go

13 lines
208 B
Go
Raw Normal View History

2021-12-29 19:40:57 +08:00
package go_handler
type GoServiceHandler struct {
2021-12-29 20:24:21 +08:00
NameSpace string
Name string
Root string
Port string
2021-12-29 19:40:57 +08:00
}
func (GoServiceHandler) ToDestinationConfig() (string, error) {
return "", nil
}