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

@@ -12,7 +12,7 @@ import (
type MssqlTransformer struct{}
func NewMssqlTransformer() *MssqlTransformer {
func NewMssqlTransformer() Transformer {
return &MssqlTransformer{}
}