TokenExtractor is used to extract kite ID from the given JWT token.
| 136 | |
| 137 | // TokenExtractor is used to extract kite ID from the given JWT token. |
| 138 | type TokenExtractor struct { |
| 139 | Token *jwt.Token |
| 140 | KiteID string |
| 141 | } |
| 142 | |
| 143 | var errTokenExtractor = errors.New("extraction ok") |
| 144 |
nothing calls this directly
no outgoing calls
no test coverage detected