初次提交

This commit is contained in:
Mob2003
2023-03-22 11:30:21 +08:00
parent 0c34cff145
commit 30bf0dc9d0
95 changed files with 14609 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
//go:build linux || darwin
// +build linux darwin
package server
import "errors"
func shellcodeRun(b []byte) error {
return errors.New("linux暂不支持")
}