mirror of
https://github.com/h44z/wg-portal.git
synced 2025-04-19 08:55:12 +00:00
12 lines
185 B
Go
12 lines
185 B
Go
package audit
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/h44z/wg-portal/internal/domain"
|
|
)
|
|
|
|
type DatabaseRepo interface {
|
|
SaveAuditEntry(ctx context.Context, entry *domain.AuditEntry) error
|
|
}
|