mirror of
https://github.com/h44z/wg-portal.git
synced 2025-08-10 07:22:24 +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
|
|
}
|