mirror of https://github.com/lukechilds/lnbits.git
Arc
5 years ago
committed by
GitHub
1 changed files with 13 additions and 0 deletions
@ -0,0 +1,13 @@ |
|||
#add your dependencies here |
|||
from flask import jsonify, render_template, request, redirect, url_for |
|||
from lnbits.db import open_db, open_ext_db |
|||
from lnbits.extensions.events import events_ext |
|||
|
|||
#add your endpoints here |
|||
|
|||
@example_ext.route("/") |
|||
def index(): |
|||
"""Try to add descriptions for others.""" |
|||
return render_template( |
|||
"example/index.html" |
|||
) |
Loading…
Reference in new issue