mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-11 21:56:34 +00:00
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
|
|
}
|