GetIssuedAt implements the Claims interface.
()
| 21 | |
| 22 | // GetIssuedAt implements the Claims interface. |
| 23 | func (m MapClaims) GetIssuedAt() (*NumericDate, error) { |
| 24 | return m.parseNumericDate("iat") |
| 25 | } |
| 26 | |
| 27 | // GetAudience implements the Claims interface. |
| 28 | func (m MapClaims) GetAudience() (ClaimStrings, error) { |
nothing calls this directly
no test coverage detected