mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-23 03:00:24 +08:00
14 lines
279 B
Go
14 lines
279 B
Go
|
|
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
||
|
|
|
||
|
|
package iplibrary
|
||
|
|
|
||
|
|
type ipItem struct {
|
||
|
|
ipFrom uint64
|
||
|
|
ipTo uint64
|
||
|
|
countryId int64
|
||
|
|
provinceId int64
|
||
|
|
cityId int64
|
||
|
|
townId int64
|
||
|
|
providerId int64
|
||
|
|
}
|