mirror of
https://github.com/httprunner/httprunner.git
synced 2026-06-08 17:29:34 +08:00
19 lines
301 B
Plaintext
19 lines
301 B
Plaintext
package main
|
|
|
|
import (
|
|
{{- range $import := .Imports }}
|
|
{{ $import -}}
|
|
{{ end }}
|
|
)
|
|
|
|
{{ range $function := .Functions }}
|
|
{{ $function }}
|
|
{{ end }}
|
|
|
|
func main() {
|
|
{{- range $functionName := .FunctionNames }}
|
|
fungo.Register("{{ $functionName }}", {{ $functionName }})
|
|
{{- end }}
|
|
fungo.Serve()
|
|
}
|