mirror of https://github.com/lukechilds/lnbits.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
831 B
28 lines
831 B
# views_api.py is for you API endpoints that could be hit by another service
|
|
|
|
# add your dependencies here
|
|
|
|
# import json
|
|
# import httpx
|
|
# (use httpx just like requests, except instead of response.ok there's only the
|
|
# response.is_error that is its inverse)
|
|
|
|
from quart import jsonify
|
|
from http import HTTPStatus
|
|
|
|
from . import example_ext
|
|
|
|
|
|
# add your endpoints here
|
|
|
|
|
|
@example_ext.route("/api/v1/tools", methods=["GET"])
|
|
async def api_example():
|
|
"""Try to add descriptions for others."""
|
|
tools = [
|
|
{"name": "Flask", "url": "https://flask.palletsprojects.com/", "language": "Python",},
|
|
{"name": "Vue.js", "url": "https://vuejs.org/", "language": "JavaScript",},
|
|
{"name": "Quasar Framework", "url": "https://quasar.dev/", "language": "JavaScript",},
|
|
]
|
|
|
|
return jsonify(tools), HTTPStatus.OK
|
|
|