github.com/vmware/go-vcloud-director/v2@v2.24.0/govcd/certificates_embedded_test.go (about) 1 //go:build functional || openapi || certificate || alb || nsxt || network || ALL 2 3 /* 4 * Copyright 2021 VMware, Inc. All rights reserved. Licensed under the Apache v2 License. 5 */ 6 7 package govcd 8 9 import ( 10 _ "embed" 11 ) 12 13 var ( 14 //go:embed test-resources/cert.pem 15 certificate string 16 17 //go:embed test-resources/key.pem 18 privateKey string 19 20 //go:embed test-resources/rootCA.pem 21 rootCaCertificate string 22 )