Created
April 26, 2016 19:01
-
-
Save ivancorrales/9c79b9864f1501a5996028ea57e3bec0 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
# app.py | |
__author__ = "Iván Corrales Solera <[email protected]>" | |
__written_date = "23/04/2016" | |
import falcon | |
from resources.books import BookResource | |
wsgi_app = api = falcon.API() | |
api.add_route('/books', BookResource()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment