Skip to content

Instantly share code, notes, and snippets.

@hrishikeshps
Created July 9, 2023 14:38
Show Gist options
  • Save hrishikeshps/a3eaaba37c78cefc20e0cfc7b7538a16 to your computer and use it in GitHub Desktop.
Save hrishikeshps/a3eaaba37c78cefc20e0cfc7b7538a16 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(message);
}
sendMessage('This is generated by Notifier Test App')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment