feat: update extractor and transformer constructors to return Extractor interface

This commit is contained in:
2026-04-10 20:42:16 -05:00
parent c1bae79f98
commit a5b5a04feb
3 changed files with 3 additions and 3 deletions

View File

@@ -19,7 +19,7 @@ type PostgresExtractor struct {
db *pgxpool.Pool
}
func NewPostgresExtractor(pool *pgxpool.Pool) *PostgresExtractor {
func NewPostgresExtractor(pool *pgxpool.Pool) Extractor {
return &PostgresExtractor{db: pool}
}