CostHive/backend/src/api/__init__.py
Lunaresk dceda1446f major: refactoring
Refactored most imports to relative paths and made some experimental
changes to angular.
2023-06-19 23:41:40 +02:00

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)