Decision determines the FilterDecisions that the backend tolerates.
()
| 26 | type Backend interface { |
| 27 | // Decision determines the FilterDecisions that the backend tolerates. |
| 28 | Decision() FilterDecision |
| 29 | // Export sends an audit log to the backend. |
| 30 | Export(ctx context.Context, alog database.AuditLog, details BackendDetails) error |
| 31 | } |