Last active
December 4, 2016 14:26
-
-
Save butackle/e4347563c8297d9fb9dbce9ee4f35cf7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = (robot) => { | |
robot.router.get('/', (req, res) => { | |
res.end("ページ"); | |
robot.send({room: '<チャンネルID>'}, "アクセスあり"); | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment