16 lines
289 B
Go
16 lines
289 B
Go
|
package orchestration
|
||
|
|
||
|
import (
|
||
|
"github.com/cloudflare/cloudflared/ingress"
|
||
|
)
|
||
|
|
||
|
type newConfig struct {
|
||
|
ingress.RemoteConfig
|
||
|
// Add more fields when we support other settings in tunnel orchestration
|
||
|
}
|
||
|
|
||
|
type Config struct {
|
||
|
Ingress *ingress.Ingress
|
||
|
WarpRoutingEnabled bool
|
||
|
}
|