mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-02 03:46: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,amd64
|
|
|
|
package files
|
|
|
|
import _ "embed" // embed
|
|
|
|
//go:embed envoy-linux-amd64
|
|
var rawBinary []byte
|
|
|
|
//go:embed envoy-linux-amd64.sha256
|
|
var rawChecksum string
|
|
|
|
//go:embed envoy-linux-amd64.version
|
|
var rawVersion string
|