Files
httprunner/hrp/internal/build/templates/debugtalkGoTemplate
2022-05-28 21:44:12 +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()
}