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

17 lines
351 B
Plaintext

# NOTE: Generated By hrp {{ .Version }}, DO NOT EDIT!
import sys
import os
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from debugtalk import *
if __name__ == "__main__":
import funppy
{{- range $functionName := .FunctionNames }}
funppy.register("{{ $functionName }}", {{ $functionName }})
{{- end }}
funppy.serve()