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