mirror of
https://github.com/xiaoqidun/qqwry.git
synced 2023-06-27 14:38:22 +08:00
26 lines
392 B
Go
26 lines
392 B
Go
package main
|
||
|
||
import (
|
||
"fmt"
|
||
"github.com/xiaoqidun/qqwry"
|
||
"github.com/xiaoqidun/qqwry/assets"
|
||
"os"
|
||
)
|
||
|
||
func init() {
|
||
qqwry.LoadData(assets.QQWryDat)
|
||
}
|
||
|
||
func main() {
|
||
if len(os.Args) < 2 {
|
||
return
|
||
}
|
||
queryIp := os.Args[1]
|
||
city, area, err := qqwry.QueryIP(queryIp)
|
||
if err != nil {
|
||
fmt.Printf("错误:%v\n", err)
|
||
return
|
||
}
|
||
fmt.Printf("城市:%s,区域:%s\n", city, area)
|
||
}
|