mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
16 lines
306 B
Go
16 lines
306 B
Go
package persistence
|
|
|
|
import (
|
|
"mayfly-go/internal/auth/domain/entity"
|
|
"mayfly-go/internal/auth/domain/repository"
|
|
"mayfly-go/pkg/base"
|
|
)
|
|
|
|
type oauth2AccountRepoImpl struct {
|
|
base.RepoImpl[*entity.Oauth2Account]
|
|
}
|
|
|
|
func newAuthAccountRepo() repository.Oauth2Account {
|
|
return &oauth2AccountRepoImpl{}
|
|
}
|