Guest User

Untitled

a guest
Feb 19th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. exports.handler = function slash(event, context, callback) {
  2. callback(null, {
  3. text: 'Hello!',
  4. attachments: [{
  5. text: 'Click the button',
  6. fallback: 'Click the button',
  7. callback_id: 'clicky',
  8. color: '#eheheh',
  9. actions: [{
  10. name: 'hello',
  11. text: 'hello',
  12. type: 'button',
  13. value: 'eh'
  14. }]
  15. }]
  16. })
  17. }
Add Comment
Please, Sign In to add comment