task CRUD update

This commit is contained in:
Marvin Zhang
2019-02-11 22:29:35 +08:00
parent a6172a0c5f
commit 62ded673dc
9 changed files with 203 additions and 21 deletions

4
app.py
View File

@@ -9,5 +9,9 @@ app.config['DEBUG'] = True
# init flask api instance
api = Api(app)
# reference api routes
import routes.task
import routes.spider
# start flask app
app.run()