ooni-probe-cli/internal/engine/model/model.go
Simone Basso f271e71c0b
geolocate: first pass of code review and minor fixes (#359)
* doc(geolocate): minor cleanup

* more minor cleanups of geolocate

* remove disabled test and see whether now it works
2021-06-04 16:06:24 +02:00

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
)