blob: d4d9d23e31e0731c4d743b48cf0ede5a02b1d450 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package maxmind
import (
"github.com/Loyalsoldier/geoip/lib"
)
type geoLite2CountryMMDBIn struct {
Type string
Action lib.Action
Description string
URI string
Want map[string]bool
OnlyIPType lib.IPType
}
|