Files
rakshasa/server/shellcode_linux.go
T
2023-03-22 11:30:21 +08:00

11 lines
162 B
Go

//go:build linux || darwin
// +build linux darwin
package server
import "errors"
func shellcodeRun(b []byte) error {
return errors.New("linux暂不支持")
}