Potion/internal/domain/auth/service.go
Hayden Hargreaves 1e6a06e8ed (FEAT): Added errors to each of the handlers.
I think this is really the only place we need them. For now at least.
2025-09-04 20:25:12 -07:00

7 lines
129 B
Go

package domain
type AuthService interface {
GetGoogleAuthUrl() string
GoogleAuthSuccess(state, code string) (string, error)
}