mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 02:21:29 +08:00
14 lines
223 B
Go
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()
|
|
}
|