Files
nekoray/go/protect_server/protect_server_other.go
2022-08-08 11:11:25 +08:00

10 lines
158 B
Go

//go:build !linux
package protect_server
import "log"
func ServeProtect(path string, fwmark int) {
log.Println("ServeProtect is not for this platform")
}