mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 02:21:29 +08:00
change: do not add console output by default feat: add GA for docs refactor: move builtin to internal refactor: relocate sentry sdk feat: report events with ga change: use http client session fix: report GA events change: sentry
14 lines
219 B
Go
14 lines
219 B
Go
package main
|
|
|
|
import (
|
|
"github.com/httprunner/hrp/hrp/cmd"
|
|
"github.com/httprunner/hrp/internal/sentry"
|
|
)
|
|
|
|
func main() {
|
|
// Flush buffered events before the program terminates.
|
|
defer sentry.Flush()
|
|
|
|
cmd.Execute()
|
|
}
|