mirror of
https://github.com/zu1k/nali.git
synced 2025-01-24 06:09:01 +08:00
7 lines
81 B
Go
7 lines
81 B
Go
package ipdb
|
|
|
|
// ip db interface
|
|
type IPDB interface {
|
|
Find(ip string) string
|
|
}
|