const JSONStorage = require("./storage"); const createStorage = (params) => { switch (params.type) { case "JSON": { return new JSONStorage(params.path); } } } module.exports = {createStorage};