89419e13c9cf415e53ced4709aa225209d3a7f7e
[it/otf.git] / a1-policy-manager-vth / app / routes / __init__.py
1 """\r
2     Module Info:\r
3     Anything imported to this file will be available to outside modules.\r
4     Routes need to be exported to be usable, if removed, routes will not be found and response\r
5     will be a 500.\r
6     ROUTE order matters, because ROUTE is like a global var used by all the other modules\r
7     it needs to be above them all\r
8 """\r
9 from flask import Blueprint\r
10 from app.helpers.response_helper import get_config\r
11 \r
12 ROUTES = Blueprint('routes', __name__)\r
13 config = get_config("config.ini")\r
14 \r
15 from .policy import *\r
16 from .ric import *\r
17 from .service import *\r
18 from .info import *\r
19 from .errors import ERRORS\r