mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 15:00:26 +08:00
9 lines
102 B
Go
9 lines
102 B
Go
package serverconfigs
|
|
|
|
type IPVersion = string
|
|
|
|
const (
|
|
IPv4 IPVersion = "4"
|
|
IPv6 IPVersion = "6"
|
|
)
|