(ctx context.Context, id int)
| 34 | // IndexerStore defines the interface for indexer storage operations |
| 35 | type IndexerStore interface { |
| 36 | Get(ctx context.Context, id int) (*models.TorznabIndexer, error) |
| 37 | List(ctx context.Context) ([]*models.TorznabIndexer, error) |
| 38 | ListEnabled(ctx context.Context) ([]*models.TorznabIndexer, error) |
| 39 | GetDecryptedAPIKey(indexer *models.TorznabIndexer) (string, error) |
no outgoing calls