| 59 | } |
| 60 | |
| 61 | type mockAuth0Credentials struct { |
| 62 | jwtToken JWTToken |
| 63 | err error |
| 64 | } |
| 65 | |
| 66 | func (mc *mockAuth0Credentials) Authenticate(_ context.Context) (JWTToken, error) { |
| 67 | return mc.jwtToken, mc.err |
nothing calls this directly
no outgoing calls
no test coverage detected