This commit is contained in:
2018-05-12 04:47:41 +05:30
parent fd4ef1ca85
commit b1e219f662
46 changed files with 423 additions and 374 deletions

10
app_fb/__init__.py Normal file
View File

@@ -0,0 +1,10 @@
from flask import Flask
from flask_cors import CORS
app = Flask('app_fb',
static_folder='./static',
static_url_path='',
template_folder='./templates')
CORS(app)
from app_fb import views, api