mirror of
https://github.com/teamhanko/hanko.git
synced 2025-10-27 06:06:54 +08:00
19 lines
389 B
Go
19 lines
389 B
Go
package test
|
|
|
|
import (
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/teamhanko/hanko/backend/audit_log"
|
|
"github.com/teamhanko/hanko/backend/persistence/models"
|
|
)
|
|
|
|
func NewAuditLogger() auditlog.Logger {
|
|
return &auditLogger{}
|
|
}
|
|
|
|
type auditLogger struct {
|
|
}
|
|
|
|
func (a *auditLogger) Create(context echo.Context, logType models.AuditLogType, user *models.User, err error) error {
|
|
return nil
|
|
}
|