Guest User

Untitled

a guest
Jan 23rd, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. require 'goliath'
  2.  
  3. class InstanceEvents < Goliath::API
  4. def on_close(env)
  5. p 'hi from instance events'
  6. end
  7.  
  8. def response(env)
  9. [200,{},'']
  10. end
  11. end
  12.  
  13. class Web < Goliath::API
  14. map "/instance-events", InstanceEvents
  15. end
Add Comment
Please, Sign In to add comment