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