Skip to content

Instantly share code, notes, and snippets.

@hrishikeshps
Created July 9, 2023 14:25
Show Gist options
  • Save hrishikeshps/6ee275ecdc6422e3e86a2773b7be36f7 to your computer and use it in GitHub Desktop.
Save hrishikeshps/6ee275ecdc6422e3e86a2773b7be36f7 to your computer and use it in GitHub Desktop.
require('dotenv').config()
const { sendSlackMessage } = require('./utils/slack.util');
console.log('🚀 Slack Notifier 🚀');
const sendMessage = async(message) => {
await sendSlackMessage('This is generated by Notifier Test App');
}
sendMessage('hello world')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment