embed_linux_arm.go 312 B

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