auth/internal/client/repository.go

12 lines
181 B
Go
Raw Normal View History

2021-09-23 23:06:22 +00:00
package client
import (
"context"
"source.toby3d.me/website/oauth/internal/domain"
2021-09-23 23:06:22 +00:00
)
type Repository interface {
Get(ctx context.Context, id string) (*domain.Client, error)
2021-09-23 23:06:22 +00:00
}