(ctx context.Context, id string, secret []byte)
| 23 | } |
| 24 | |
| 25 | func (c clientConfigDriver) AuthenticateClient(ctx context.Context, id string, secret []byte) (*client.Client, error) { |
| 26 | //TODO implement me |
| 27 | panic("implement me") |
| 28 | } |
| 29 | |
| 30 | func (c clientConfigDriver) GetClient(ctx context.Context, id string) (fosite.Client, error) { |
| 31 | return c.GetConcreteClient(ctx, id) |
nothing calls this directly
no outgoing calls
no test coverage detected