GetExpirationTime implements the Claims interface.
()
| 11 | |
| 12 | // GetExpirationTime implements the Claims interface. |
| 13 | func (m MapClaims) GetExpirationTime() (*NumericDate, error) { |
| 14 | return m.parseNumericDate("exp") |
| 15 | } |
| 16 | |
| 17 | // GetNotBefore implements the Claims interface. |
| 18 | func (m MapClaims) GetNotBefore() (*NumericDate, error) { |
nothing calls this directly
no test coverage detected