f271e71c0b
* doc(geolocate): minor cleanup * more minor cleanups of geolocate * remove disabled test and see whether now it works
10 lines
241 B
Go
10 lines
241 B
Go
// Package model defines shared data structures and interfaces.
|
|
package model
|
|
|
|
import "github.com/ooni/probe-cli/v3/internal/engine/geolocate"
|
|
|
|
const (
|
|
// DefaultProbeIP is the default probe IP.
|
|
DefaultProbeIP = geolocate.DefaultProbeIP
|
|
)
|