mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-30 17:30:25 +08:00
16 lines
310 B
Go
16 lines
310 B
Go
|
|
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||
|
|
|
||
|
|
package dnsconfigs
|
||
|
|
|
||
|
|
type RouteRangeType = string
|
||
|
|
|
||
|
|
const (
|
||
|
|
RouteRangeTypeIP RouteRangeType = "ipRange"
|
||
|
|
)
|
||
|
|
|
||
|
|
// RouteRangeIPRange IP范围配置
|
||
|
|
type RouteRangeIPRange struct {
|
||
|
|
IPFrom string `json:"ipFrom"`
|
||
|
|
IPTo string `json:"ipTo"`
|
||
|
|
}
|