Files
httprunner/internal/scaffold/templates/plugin/debugtalkGoTemplate
2025-02-06 11:03:41 +08:00

14 lines
269 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()
}