1 //go:build !linux || !seccomp 2 // +build !linux !seccomp 3 4 package main 5 6 import "fmt" 7 8 func main() { 9 fmt.Println("Not supported, to use this compile with build tag: seccomp.") 10 } 11
View as plain text