interface that defines token cache behavior
| 10 | |
| 11 | //interface that defines token cache behavior |
| 12 | type Cache interface { |
| 13 | Get(token string) *TtyParameter |
| 14 | Delete(token string) error |
| 15 | Add(token string, param *TtyParameter, d time.Duration) error |
| 16 | } |
no outgoing calls
no test coverage detected