mirror of
https://github.com/tobychui/zoraxy.git
synced 2025-08-06 05:08:28 +02:00

+ Added X-Forwarded-Proto for automatic proxy detector + Split blacklist and whitelist from geodb script file + Optimized compile binary size + Added access control to TCP proxy + Added "invalid config detect" in up time monitor for isse #7 + Fixed minor bugs in advance stats panel + Reduced file size of embedded materials
17 lines
294 B
Go
17 lines
294 B
Go
//go:build (windows && amd64) || (linux && mipsle) || (linux && riscv64)
|
|
// +build windows,amd64 linux,mipsle linux,riscv64
|
|
|
|
package sshprox
|
|
|
|
import "embed"
|
|
|
|
/*
|
|
Bianry embedding
|
|
|
|
Make sure when compile, gotty binary exists in static.gotty
|
|
*/
|
|
var (
|
|
//go:embed gotty/LICENSE
|
|
gotty embed.FS
|
|
)
|