This commit is contained in:
CommanderStrax 2015-12-23 16:54:25 -06:00
commit 6e09d44228
2 changed files with 6 additions and 2 deletions

View file

@ -1 +1,2 @@
import models import models
import api

View file

@ -4,8 +4,11 @@ from flask import Flask
import config import config
import json import json
from api.api import api
app = Flask(__name__) app = Flask(__name__)
app.secret_key = config.SECRET app.secret_key = config.SECRET
app.register_blueprint(api)
@app.route("/api") @app.route("/api")
def api(): def api():