Move /jobs related code in dedicated package.

This commit is contained in:
Patrick Jentsch
2019-11-04 09:03:31 +01:00
parent 162aa5d7c5
commit 799101d380
5 changed files with 75 additions and 65 deletions

6
app/jobs/__init__.py Normal file
View File

@@ -0,0 +1,6 @@
from flask import Blueprint
jobs = Blueprint('jobs', __name__)
from . import views