auth/internal/profile/repository.go

16 lines
333 B
Go

package profile
import (
"context"
"golang.org/x/oauth2"
"source.toby3d.me/website/indieauth/internal/domain"
)
type Repository interface {
Get(ctx context.Context, token *oauth2.Token) (*domain.Profile, error)
}
var ErrNotExist error = domain.NewError(domain.ErrorCodeServerError, "not found link back to provided Me", "")