Selaa lähdekoodia

views und api als Blueprint

Global Cube 2 vuotta sitten
vanhempi
commit
16ff35c26a
2 muutettua tiedostoa jossa 11 lisäystä ja 4 poistoa
  1. 7 0
      app/api.py
  2. 4 4
      app/views.py

+ 7 - 0
app/api.py

@@ -0,0 +1,7 @@
+from flask import Blueprint
+
+bp = Blueprint('api', __name__)
+
+@bp.route('/')
+def main():
+    return 'Test'

+ 4 - 4
app/views.py

@@ -1,12 +1,12 @@
-from flask import render_template
-from app import app
+from flask import Blueprint, render_template
 
+bp = Blueprint('views', __name__)
 
-@app.route('/')
+@bp.route('/')
 def home():
    return 'hello world!!'
 
 
-@app.route('/template')
+@bp.route('/template')
 def template():
     return render_template('home.html')