#!/usr/bin/env node import getLocalImage from "./getLocalImage.js" import getRemoteImage from "./getRemoteImage.js" import getConfig from "./helpers/getConfig.js" import { config } from "./helpers/types.js" /** * Main function */ async function main() { const conf: config = await getConfig() if (conf.remote) await getRemoteImage(conf) else await getLocalImage(conf) } if (Number(process.versions.node.split(".")[0]) < 16) { console.error("Please upgrade to node 16. NO GUARENTEES!") } // Run the main function, obviously. main()