mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 02:21:29 +08:00
19 lines
410 B
Plaintext
19 lines
410 B
Plaintext
# NOTE: Generated By hrp {{ .Version }}, DO NOT EDIT!
|
|
|
|
{{ range $import := .Imports }}
|
|
{{- $import}}
|
|
{{ end }}
|
|
{{ range $fromImport := .FromImports }}
|
|
{{- $fromImport}}
|
|
{{ end }}
|
|
|
|
{{ range $function := .Functions }}
|
|
{{- $function }}
|
|
{{ end }}
|
|
|
|
if __name__ == "__main__":
|
|
{{- range $functionName := .FunctionNames }}
|
|
funppy.register("{{ $functionName }}", {{ $functionName }})
|
|
{{- end }}
|
|
funppy.serve()
|