From c66211de22ee90ed8cbeb5174fd8ac5b04d55419 Mon Sep 17 00:00:00 2001 From: Chris Maddern Date: Mon, 26 Aug 2024 09:47:28 -0400 Subject: [PATCH] Export rodeo ingestor doh --- src/ingestors/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ingestors/index.ts b/src/ingestors/index.ts index 13176ad..ccf9aec 100644 --- a/src/ingestors/index.ts +++ b/src/ingestors/index.ts @@ -5,6 +5,7 @@ import { HighlightIngestor } from './highlight'; import { TransientIngestor } from './transient-base'; import { FoundationIngestor } from './foundation'; import { ZoraInternalIngestor } from './zora-internal'; +import { RodeoIngestor } from './rodeo'; export type MintIngestionMap = { [key: string]: MintIngestor; @@ -17,6 +18,7 @@ export const ALL_MINT_INGESTORS: MintIngestionMap = { transient: new TransientIngestor(), foundation: new FoundationIngestor(), 'zora-internal': new ZoraInternalIngestor(), + rodeo: new RodeoIngestor(), }; export * from './';