mirror of
https://github.com/tobychui/zoraxy.git
synced 2025-08-06 21:28:30 +02:00
17 lines
362 B
Go
17 lines
362 B
Go
//go:build (windows && amd64) || (linux && mipsle) || (linux && riscv64) || (freebsd && amd64) || (darwin && arm64)
|
|
// +build windows,amd64 linux,mipsle linux,riscv64 freebsd,amd64 darwin,arm64
|
|
|
|
package sshprox
|
|
|
|
import "embed"
|
|
|
|
/*
|
|
Binary embedding
|
|
|
|
Make sure when compile, gotty binary exists in static.gotty
|
|
*/
|
|
var (
|
|
//go:embed gotty/LICENSE
|
|
gotty embed.FS
|
|
)
|