7 lines
129 B
Go
7 lines
129 B
Go
package domain
|
|
|
|
type AuthService interface {
|
|
GetGoogleAuthUrl() string
|
|
GoogleAuthSuccess(state, code string) (string, error)
|
|
}
|