change: relocate plugin templates

This commit is contained in:
debugtalk
2022-05-29 13:28:48 +08:00
parent 0db71351f3
commit 51ef0636fb
7 changed files with 6 additions and 6 deletions
@@ -0,0 +1,13 @@
// 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()
}