embed_linux_386.go 307 B

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