mirror of
https://github.com/zu1k/nali.git
synced 2025-01-22 21:29:02 +08:00
11 lines
136 B
Go
11 lines
136 B
Go
package ipdb
|
|
|
|
// ip db type
|
|
type IPDBType int
|
|
|
|
const (
|
|
GEOIP2 = iota // geoip2
|
|
QQIP // chunzhen
|
|
IPIP // ipip.net
|
|
)
|