Files
httprunner/hrp/internal/scaffold/templates/plugin/debugtalkGoTemplate
2022-05-29 13:28:48 +08:00

14 lines
275 B
Plaintext

// NOTE: Generated By hrp {{ .Version }}, DO NOT EDIT!
package main
import (
"github.com/httprunner/funplugin/fungo"
)
func main() {
{{- range $functionName := .FunctionNames }}
fungo.Register("{{ $functionName }}", {{ $functionName }})
{{- end }}
fungo.Serve()
}