mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 02:21:29 +08:00
14 lines
269 B
Plaintext
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()
|
|
}
|