Close closes all handles
()
| 81 | |
| 82 | // Close closes all handles |
| 83 | func (c *Cache) Close() error { |
| 84 | Log.Debugf("Closing cache file") |
| 85 | c.db.Close() |
| 86 | return nil |
| 87 | } |
| 88 | |
| 89 | // LoadToken loads a token from cache |
| 90 | func (c *Cache) LoadToken() (*oauth2.Token, error) { |
no outgoing calls
no test coverage detected