Guest User

Untitled

a guest
Oct 21st, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. const fastify = require('fastify')()
  2.  
  3. fastify.get('/', {
  4. schema: {
  5. response: {
  6. 200: {
  7. type: 'object',
  8. properties: {hello: {type: 'string'}}
  9. }
  10. }
  11. }
  12. }, (req, reply) => reply.send({ hello: 'world' }))
  13.  
  14.  
  15.  
  16. fastify.listen(3000)
Add Comment
Please, Sign In to add comment