mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-06 20:32:44 +08:00
12 lines
239 B
Go
12 lines
239 B
Go
package wiki
|
|
|
|
import (
|
|
"github.com/httprunner/funplugin/myexec"
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
func OpenWiki() error {
|
|
log.Info().Msgf("%s https://httprunner.com", openCmd)
|
|
return myexec.RunCommand(openCmd, "https://httprunner.com")
|
|
}
|