mirror of
https://github.com/kubenetworks/kubevpn.git
synced 2025-12-24 11:51:13 +08:00
30 lines
380 B
Go
30 lines
380 B
Go
package resources
|
|
|
|
type Listener struct {
|
|
Name string
|
|
Address string
|
|
Port uint32
|
|
RouteNames []string
|
|
}
|
|
|
|
type Route struct {
|
|
Name string
|
|
Headers []Header
|
|
Cluster string
|
|
}
|
|
|
|
type Header struct {
|
|
Key string
|
|
Value string
|
|
}
|
|
|
|
type Cluster struct {
|
|
Name string
|
|
Endpoints []Endpoint
|
|
}
|
|
|
|
type Endpoint struct {
|
|
UpstreamHost string
|
|
UpstreamPort uint32
|
|
}
|