feat(aa-log): add dummy rule struct.

This commit is contained in:
Alexandre Pujol 2023-10-01 19:06:27 +01:00
parent 68be85b5c2
commit 5b74cb665f
Failed to generate hash of commit

View file

@ -6,6 +6,21 @@ package aa
import "strings"
type Rule struct {
Comment string
NoNewPrivs bool
FileInherit bool
}
func (r *Rule) Less(other any) bool {
return false
}
func (r *Rule) Equals(other any) bool {
return false
}
// Qualifier to apply extra settings to a rule
type Qualifier struct {
Audit bool