mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-01 11:26:29 +02:00
* envoy: add full version * remove unused import * envoy: refactor envoy embedding * fix lint * commit ignored files * maybe fix test
14 lines
234 B
Go
14 lines
234 B
Go
//+build linux,arm64
|
|
|
|
package files
|
|
|
|
import _ "embed" // embed
|
|
|
|
//go:embed envoy-linux-arm64
|
|
var rawBinary []byte
|
|
|
|
//go:embed envoy-linux-arm64.sha256
|
|
var rawChecksum string
|
|
|
|
//go:embed envoy-linux-arm64.version
|
|
var rawVersion string
|