1.0.0 • Published 6 months ago

greathooks v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
6 months ago

GreatHooks 1.0.0

const gh = require("greathooks");

gh.create(text); //create script to send a normal text with webhook
gh.create(embed); //create script to send a embed message with webhook

gh.hookpost("WebHook URL", {
  title: 'Hello World!',  // Send a Embed message.
  description: 'test'
})

gh.hookpost('WebHook URL', {
  text: 'This is a regular text message.' // Send a standart message
});