4 lines
90 B
Python
4 lines
90 B
Python
|
from flask import Blueprint
|
||
|
|
||
|
api_v1 = Blueprint('api_v1', __name__, url_prefix='/api/v1')
|