fix: split importers list

This commit is contained in:
liyasthomas
2021-12-28 11:26:09 +05:30
committed by Andrew Bastin
parent 660479f8a6
commit d5866fbb3b
3 changed files with 7 additions and 7 deletions

View File

@@ -0,0 +1,3 @@
import HoppRESTCollImporter from "./hopp"
export const RESTCollectionImporters = [HoppRESTCollImporter] as const

View File

@@ -1,6 +1,5 @@
import * as TE from "fp-ts/TaskEither"
import { StepsOutputList } from "../steps"
import HoppRESTCollImporter from "../import/hopp"
/**
* The error state to be used when the file formats do not match
@@ -46,5 +45,3 @@ export const defineImporter = <ReturnType, StepType>(input: {
...input,
}
}
export const RESTCollectionImporters = [HoppRESTCollImporter] as const