Refactored most imports to relative paths and made some experimental changes to angular.
6 lines
137 B
Python
6 lines
137 B
Python
from flask import Blueprint
|
|
|
|
bp = Blueprint('api', __name__, url_prefix='/api')
|
|
|
|
from .v1 import bp as bp_v1
|
|
bp.register_blueprint(bp_v1) |