Files
mayfly-go/server/internal/auth/domain/repository/oauth2.go

11 lines
162 B
Go
Raw Normal View History

2023-07-22 20:51:46 +08:00
package repository
import (
"mayfly-go/internal/auth/domain/entity"
"mayfly-go/pkg/base"
)
2023-07-22 20:51:46 +08:00
type Oauth2Account interface {
base.Repo[*entity.Oauth2Account]
2023-07-22 20:51:46 +08:00
}