mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-20 07:40:32 +08:00
15 lines
348 B
Go
15 lines
348 B
Go
package wiki
|
|
|
|
import (
|
|
"github.com/rs/zerolog/log"
|
|
|
|
"github.com/httprunner/httprunner/v4/hrp/internal/myexec"
|
|
"github.com/httprunner/httprunner/v4/hrp/internal/sdk"
|
|
)
|
|
|
|
func OpenWiki() error {
|
|
sdk.SendGA4Event("hrp_wiki", nil)
|
|
log.Info().Msgf("%s https://httprunner.com", openCmd)
|
|
return myexec.RunCommand(openCmd, "https://httprunner.com")
|
|
}
|