mirror of
https://github.com/criyle/go-judge.git
synced 2025-11-04 14:50:02 +08:00
10 lines
136 B
Go
10 lines
136 B
Go
// +build !seccomp
|
|
|
|
package env
|
|
|
|
import "syscall"
|
|
|
|
func readSeccompConf(name string) ([]syscall.SockFilter, error) {
|
|
return nil, nil
|
|
}
|