@@ -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
|
||||
@@ -0,0 +1,11 @@
|
||||
package go_handler
|
||||
|
||||
type GoServiceHandler struct {
|
||||
Name string
|
||||
Root string
|
||||
Port string
|
||||
}
|
||||
|
||||
func (GoServiceHandler) ToDestinationConfig() (string, error) {
|
||||
return "", nil
|
||||
}
|
||||
Reference in New Issue
Block a user