Guest User

Untitled

a guest
May 25th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #!/usr/bin/env python3
  2.  
  3. import falcon
  4. from images import Resource
  5.  
  6. api = application = falcon.API()
  7.  
  8. images = Resource(None)
  9. api.add_route('/images', images)
Add Comment
Please, Sign In to add comment