package repository import ( "gitlab.com/mbugroup/lti-api.git/internal/common/repository" entity "gitlab.com/mbugroup/lti-api.git/internal/entities" "gorm.io/gorm" ) type AuditLogRepository interface { repository.BaseRepository[entity.AuditLog] } type AuditLogRepositoryImpl struct { *repository.BaseRepositoryImpl[entity.AuditLog] } func NewAuditLogRepository(db *gorm.DB) AuditLogRepository { return &AuditLogRepositoryImpl{ BaseRepositoryImpl: repository.NewBaseRepository[entity.AuditLog](db), } }