GetIndex returns the checkup index
()
| 272 | |
| 273 | // GetIndex returns the checkup index |
| 274 | func (gh *Storage) GetIndex() (map[string]int64, error) { |
| 275 | m, _, e := gh.readIndex() |
| 276 | return m, e |
| 277 | } |
| 278 | |
| 279 | // Maintain deletes check files that are older than gh.CheckExpiry. |
| 280 | func (gh *Storage) Maintain() error { |