mirror of
https://github.com/criyle/go-judge.git
synced 2025-11-04 14:50:02 +08:00
- increase default tmpfs size to 128M - add /config to get file store path - remove memory only file store close #20
11 lines
156 B
Go
11 lines
156 B
Go
//go:build !seccomp
|
|
// +build !seccomp
|
|
|
|
package env
|
|
|
|
import "syscall"
|
|
|
|
func readSeccompConf(name string) ([]syscall.SockFilter, error) {
|
|
return nil, nil
|
|
}
|