Files
httprunner/cli/hrp/main.go
2022-01-08 15:10:37 +08:00

14 lines
223 B
Go

package main
import (
"github.com/httprunner/hrp/cli/hrp/cmd"
"github.com/httprunner/hrp/internal/sentry"
)
func main() {
// Flush buffered events before the program terminates.
defer sentry.Flush()
cmd.Execute()
}