mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
12 lines
194 B
JavaScript
12 lines
194 B
JavaScript
import {
|
|
downloadStorkExecutable,
|
|
buildIndex
|
|
} from '~/helpers/stork/executable.js'
|
|
|
|
;(async () => {
|
|
await downloadStorkExecutable()
|
|
|
|
await buildIndex()
|
|
|
|
process.exit()
|
|
})()
|