harmony/src/test/hook.ts

12 lines
243 B
TypeScript

import { Webhook } from '../../mod.ts'
import { WEBHOOK } from './config.ts'
const webhook = await Webhook.fromURL(WEBHOOK)
console.log('Fetched webhook!')
webhook
.send('Hello World', {
name: 'OwO'
})
.then(() => 'Sent message!')