Files
httprunner/hrp/main.go
2021-11-18 18:14:02 +08:00

16 lines
232 B
Go

package main
import (
"time"
"github.com/getsentry/sentry-go"
"github.com/httprunner/hrp/hrp/cmd"
)
func main() {
// Flush buffered events before the program terminates.
defer sentry.Flush(2 * time.Second)
cmd.Execute()
}