mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 16:00:25 +08:00
16 lines
263 B
Go
16 lines
263 B
Go
package persistence
|
|
|
|
import (
|
|
"mayfly-go/internal/file/domain/entity"
|
|
"mayfly-go/internal/file/domain/repository"
|
|
"mayfly-go/pkg/base"
|
|
)
|
|
|
|
type fileRepoImpl struct {
|
|
base.RepoImpl[*entity.File]
|
|
}
|
|
|
|
func newFileRepo() repository.File {
|
|
return &fileRepoImpl{}
|
|
}
|