This repository has been archived on 2023-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
fediverse-imagebot/src/index.ts

18 lines
410 B
TypeScript

import getConfig from "./helpers/config.js";
import { config } from "./helpers/types.js";
import getLocalImage from "./getLocalImage.js";
import getRemoteImage from "./getRemoteImage.js";
/**
* Main function
*/
async function main() {
const conf: config = await getConfig();
if (conf.remote) await getRemoteImage(conf);
else await getLocalImage(conf);
}
// Run the main function, obviously.
main();