mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-06 20:32:44 +08:00
17 lines
409 B
Go
17 lines
409 B
Go
// NOTE: Generated By hrp v4.3.6, 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()
|
|
}
|