UNPKG

airt.cf

Version:

URL Shortener

10 lines 242 B
const axios = require('axios') class Shortener { async short(link) { let res = await axios.post('https://airt.cf/airt/short', { link: link }) return res.data; }; }; module.exports = new Shortener();