import { nicelog } from '@/utils/nicelog' import { fetchApiSource } from './functions/fetchApiSource' ;(async function () { nicelog('• Fetching API source files...') await fetchApiSource() nicelog('✔ Complete!') process.exit() })()