8 lines
147 B
Python
8 lines
147 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from flask import Blueprint
|
|
|
|
api_v1_blueprint = Blueprint('api_v1', __name__, url_prefix='/api/v1')
|
|
|
|
from .views import *
|