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'
```
		
	
			
		
			
				
	
	
		
			17 lines
		
	
	
		
			301 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			301 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package info
 | |
| 
 | |
| import (
 | |
| 	"github.com/alecthomas/kingpin"
 | |
| 	"github.com/apex/log"
 | |
| 	"github.com/ooni/probe-cli/internal/cli/root"
 | |
| )
 | |
| 
 | |
| func init() {
 | |
| 	cmd := root.Command("info", "Display information about OONI Probe")
 | |
| 
 | |
| 	cmd.Action(func(_ *kingpin.ParseContext) error {
 | |
| 		log.Info("Info")
 | |
| 		return nil
 | |
| 	})
 | |
| }
 |