testEntry is a simple implementation of common.TokenEntry for testing.
| 10 | |
| 11 | // testEntry is a simple implementation of common.TokenEntry for testing. |
| 12 | type testEntry struct { |
| 13 | value string |
| 14 | expireTime time.Time |
| 15 | } |
| 16 | |
| 17 | func (e *testEntry) GetExpireTime() time.Time { |
| 18 | return e.expireTime |
nothing calls this directly
no outgoing calls
no test coverage detected