1
0
Fork 0
mirror of synced 2026-06-05 16:28:19 +00:00
action-setup/src/self-installer/download.ts
2020-05-08 21:34:25 +07:00

4 lines
146 B
TypeScript

import fetch from 'node-fetch'
import url from './url'
export const downloadSelfInstaller = () => fetch(url)
export default downloadSelfInstaller