(ctx context.Context, alog database.AuditLog, _ audit.BackendDetails)
| 31 | } |
| 32 | |
| 33 | func (b *postgresBackend) Export(ctx context.Context, alog database.AuditLog, _ audit.BackendDetails) error { |
| 34 | _, err := b.db.InsertAuditLog(ctx, database.InsertAuditLogParams(alog)) |
| 35 | if err != nil { |
| 36 | return xerrors.Errorf("insert audit log: %w", err) |
| 37 | } |
| 38 | |
| 39 | return nil |
| 40 | } |
nothing calls this directly
no test coverage detected