12 lines
147 B
Go
12 lines
147 B
Go
|
// +build !apparmor !linux !amd64
|
||
|
|
||
|
package apparmor
|
||
|
|
||
|
func IsEnabled() bool {
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func ApplyProfile(name string) error {
|
||
|
return nil
|
||
|
}
|