remove apiary from docstring

This commit is contained in:
diminator 2016-08-17 15:27:36 +02:00
parent e871458a99
commit 7df49b068a
No known key found for this signature in database
GPG Key ID: C3D8590E6D0D439A
2 changed files with 5 additions and 4 deletions

View File

@ -1,7 +1,7 @@
"""This module provides the blueprint for some basic API endpoints.
For more information please refer to the documentation in Apiary:
- http://docs.bigchaindb.apiary.io/
For more information please refer to the documentation on ReadTheDocs:
- https://bigchaindb.readthedocs.io/en/latest/drivers-clients/http-client-server-api.html
"""
import flask
@ -13,6 +13,7 @@ from bigchaindb import version
info_views = Blueprint('info_views', __name__)
@info_views.route('/')
def home():
return flask.jsonify({

View File

@ -1,7 +1,7 @@
"""This module provides the blueprint for some basic API endpoints.
For more information please refer to the documentation in Apiary:
- http://docs.bigchaindb.apiary.io/
For more information please refer to the documentation on ReadTheDocs:
- https://bigchaindb.readthedocs.io/en/latest/drivers-clients/http-client-server-api.html
"""
import flask