mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-11 20:00:26 +08:00
11 lines
162 B
Go
11 lines
162 B
Go
package repository
|
|
|
|
import (
|
|
"mayfly-go/internal/auth/domain/entity"
|
|
"mayfly-go/pkg/base"
|
|
)
|
|
|
|
type Oauth2Account interface {
|
|
base.Repo[*entity.Oauth2Account]
|
|
}
|