aboutsummaryrefslogtreecommitdiff
path: root/internal/auth/repo.go
blob: f404c94cc755481ce05921f3ab7abdb1f767d08b (plain)
1
2
3
4
5
6
7
8
package auth

// Repo storage interface
type Repo interface {
	IsAuthorized(gp *GoogleAuthProfile) (bool, error)
	LookUpAuthProfileID(gp *GoogleAuthProfile) (string, error)
	SaveAuthProfile(ap *Profile) error
}