mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-15 04:19:28 +08:00
19 lines
353 B
Go
19 lines
353 B
Go
package wiki
|
|
|
|
import (
|
|
"os/exec"
|
|
|
|
"github.com/rs/zerolog/log"
|
|
|
|
"github.com/httprunner/httprunner/v4/hrp/internal/sdk"
|
|
)
|
|
|
|
func OpenWiki() error {
|
|
sdk.SendEvent(sdk.EventTracking{
|
|
Category: "OpenWiki",
|
|
Action: "hrp wiki",
|
|
})
|
|
log.Info().Msgf("%s https://httprunner.com", openCmd)
|
|
return exec.Command(openCmd, "https://httprunner.com").Run()
|
|
}
|