1 package ambex 2 3 import ( 4 ecp_v3_cache "github.com/emissary-ingress/emissary/v3/pkg/envoy-control-plane/cache/v3" 5 ) 6 7 // FastpathSnapshot holds envoy configuration that bypasses python. 8 type FastpathSnapshot struct { 9 Snapshot *ecp_v3_cache.Snapshot 10 Endpoints *Endpoints 11 } 12