12 lines
337 B
Go
12 lines
337 B
Go
package data
|
|
|
|
import "kra/internal/biz"
|
|
|
|
type auditRepo struct{ data *Data }
|
|
|
|
func NewAuditRepo(data *Data) biz.AuditQueryRepo { return &auditRepo{data: data} }
|
|
|
|
func NewAuditRecorderRepo(data *Data) biz.AuditRecordRepo { return &auditRepo{data: data} }
|
|
|
|
func NewLogFileRepo(data *Data) biz.LogFileRepo { return &auditRepo{data: data} }
|