UNPKG

scathach-api

Version:

A NodeJS wrapper to interacts with Scathach bot

14 lines (10 loc) 280 B
/* eslint-disable @typescript-eslint/no-var-requires */ import Scathach from '../build/index'; const config = { useragent: 'github workflows (ci)', apikey: '<scathach.dev auth>' }; const sca = new Scathach(config); sca.getAzur().then((r) => { console.log('azur', r); });