11 lines
240 B
TypeScript
11 lines
240 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!')
|