update
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-12-29 19:40:57 +08:00
parent de700cfdef
commit 745daedf91
5 changed files with 90 additions and 11 deletions
@@ -13,7 +13,11 @@ steps:
- go test -v
`
type GoApiHandler struct{}
type GoApiHandler struct {
Name string
Root string
Port string
}
func (GoApiHandler) ToDestinationConfig() (string, error) {
return "", nil
+11
View File
@@ -0,0 +1,11 @@
package go_handler
type GoServiceHandler struct {
Name string
Root string
Port string
}
func (GoServiceHandler) ToDestinationConfig() (string, error) {
return "", nil
}