embed.go 310 B

12345678910111213141516
  1. //go:build (windows && amd64) || (linux && mipsle) || (linux && riscv64)
  2. // +build windows,amd64 linux,mipsle linux,riscv64
  3. package sshprox
  4. import "embed"
  5. /*
  6. Bianry embedding
  7. Make sure when compile, gotty binary exists in static.gotty
  8. */
  9. var (
  10. //go:embed gotty/LICENSE
  11. gotty embed.FS
  12. )