mirror of
https://github.com/fumiama/terasu-cloudflared.git
synced 2026-06-06 01:20:24 +08: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
|
|
}
|