fix: check if debugtalk.go contains main() function

This commit is contained in:
debugtalk
2022-06-14 23:17:34 +08:00
parent 39d1d0dc46
commit 2076ec5100
3 changed files with 58 additions and 14 deletions

View File

@@ -0,0 +1,16 @@
// NOTE: Generated By hrp v4.1.3, DO NOT EDIT!
package main
import (
"github.com/httprunner/funplugin/fungo"
)
func main() {
fungo.Register("SumTwoInt", SumTwoInt)
fungo.Register("SumInts", SumInts)
fungo.Register("Sum", Sum)
fungo.Register("SetupHookExample", SetupHookExample)
fungo.Register("TeardownHookExample", TeardownHookExample)
fungo.Register("GetUserAgent", GetUserAgent)
fungo.Serve()
}