mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2026-01-06 07:45:47 +08:00
9 lines
96 B
Go
9 lines
96 B
Go
package configs
|
|
|
|
type IPVersion = string
|
|
|
|
const (
|
|
IPv4 IPVersion = "4"
|
|
IPv6 IPVersion = "6"
|
|
)
|