(ctx context.Context, alog database.AuditLog)
| 25 | // Filters produce a FilterDecision for a given audit log. |
| 26 | type Filter interface { |
| 27 | Check(ctx context.Context, alog database.AuditLog) (FilterDecision, error) |
| 28 | } |
| 29 | |
| 30 | // DefaultFilter is the default filter used when exporting audit logs. It allows |
no outgoing calls