auth/internal/authn/repository.go

8 lines
120 B
Go

package authn
import "context"
type Repository interface {
Fetch(ctx context.Context, me string) ([]string, error)
}