1
0
Fork 0
mirror of https://github.com/kou029w/daraz-san.git synced 2025-01-18 16:08:06 +00:00
daraz-san/app.js

15 lines
308 B
JavaScript
Raw Normal View History

2019-07-27 01:30:19 +09:00
const { App } = require("@slack/bolt");
const daraz = require("./");
2019-07-27 01:30:19 +09:00
const app = daraz(
new App({
token: process.env.SLACK_BOT_TOKEN,
signingSecret: process.env.SLACK_SIGNING_SECRET
})
);
2019-07-27 01:30:19 +09:00
(async () => {
2019-07-30 09:23:20 +09:00
await app.start(process.env.PORT || 8080);
2019-07-27 01:30:19 +09:00
console.log("Daraz-san ⚡ running");
})();