Files
mayfly-go/server/internal/auth/infrastructure/persistence/oauth2.go
meilin.huang e56788af3e refactor: dbm
2024-12-08 13:04:23 +08:00

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{}
}