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

11 lines
285 B
Go
Raw Normal View History

2023-07-22 20:51:46 +08:00
package repository
import "mayfly-go/internal/auth/domain/entity"
type Oauth2Account interface {
// GetOAuthAccount 根据identity获取第三方账号信息
GetOAuthAccount(condition *entity.Oauth2Account, cols ...string) error
SaveOAuthAccount(e *entity.Oauth2Account) error
}