move files to hrp

This commit is contained in:
debugtalk
2022-03-23 15:10:23 +08:00
parent fa80e70f63
commit 79c25fc475
125 changed files with 0 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
package main
import (
"github.com/httprunner/funplugin/fungo"
)
// register functions and build to plugin binary
func main() {
fungo.Register("sum_ints", SumInts)
fungo.Register("sum_two_int", SumTwoInt)
fungo.Register("sum", Sum)
fungo.Register("sum_two_string", SumTwoString)
fungo.Register("sum_strings", SumStrings)
fungo.Register("concatenate", Concatenate)
fungo.Register("setup_hook_example", SetupHookExample)
fungo.Register("teardown_hook_example", TeardownHookExample)
fungo.Serve()
}