embed_linux_arm64.go 314 B

123456789101112131415161718
  1. //go:build linux && arm64
  2. // +build linux,arm64
  3. package sshprox
  4. import "embed"
  5. /*
  6. Bianry embedding for ARM64 builds
  7. Make sure when compile, gotty binary exists in static.gotty
  8. */
  9. var (
  10. //go:embed gotty/gotty_linux_arm64
  11. //go:embed gotty/.gotty
  12. //go:embed gotty/LICENSE
  13. gotty embed.FS
  14. )