mirror of
https://github.com/zu1k/nali.git
synced 2025-02-02 18:32:43 +08:00
6 lines
62 B
Go
6 lines
62 B
Go
|
package ipdb
|
||
|
|
||
|
type IPDB interface {
|
||
|
Find(ip string) string
|
||
|
}
|