go_build_test.go 558 B

12345678910111213141516
  1. package go_build_test
  2. import (
  3. "testing"
  4. _ "github.com/envoyproxy/go-control-plane/envoy/api/v2"
  5. _ "github.com/envoyproxy/go-control-plane/envoy/api/v2/auth"
  6. _ "github.com/envoyproxy/go-control-plane/envoy/service/accesslog/v2"
  7. _ "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v2"
  8. _ "github.com/envoyproxy/go-control-plane/envoy/service/metrics/v2"
  9. _ "github.com/envoyproxy/go-control-plane/envoy/service/ratelimit/v2"
  10. )
  11. func TestNoop(t *testing.T) {
  12. // Noop test that verifies the successful importation of Envoy V2 API protos
  13. }