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