0c5b6aa37c
This is the command I used: ``` rg 'github.com/openobservatory/gooni' --files-with-matches \ | xargs sed -i '' 's/github.com\/openobservatory\/gooni/github.com\/ooni\/probe-cli/g' ```
16 lines
285 B
Go
16 lines
285 B
Go
package app
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/ooni/probe-cli/internal/cli/root"
|
|
"github.com/ooni/probe-cli/internal/cli/version"
|
|
)
|
|
|
|
// Run the app. This is the main app entry point
|
|
func Run() error {
|
|
root.Cmd.Version(version.Version)
|
|
_, err := root.Cmd.Parse(os.Args[1:])
|
|
return err
|
|
}
|