auth/internal/user/usecase.go
Maxim Lebedev 3b0ebb3690
Some checks failed
continuous-integration/drone Build is failing
🚚 Renamed module due project migration
2022-03-13 15:58:34 +05:00

13 lines
250 B
Go

package user
import (
"context"
"source.toby3d.me/toby3d/auth/internal/domain"
)
type UseCase interface {
// Fetch discovery all available endpoints and Profile info on Me URL.
Fetch(ctx context.Context, me *domain.Me) (*domain.User, error)
}