mirror of
https://github.com/openziti/zrok.git
synced 2024-11-26 01:54:09 +01:00
10 lines
129 B
Go
10 lines
129 B
Go
|
package vpn
|
||
|
|
||
|
type ClientConfig struct {
|
||
|
Greeting string
|
||
|
IP string
|
||
|
CIDR string
|
||
|
ServerIP string
|
||
|
Routes []string
|
||
|
}
|