7 lines
90 B
Python
7 lines
90 B
Python
from flask import Blueprint
|
|
|
|
api = Blueprint('api', __name__)
|
|
|
|
from .controller import *
|
|
|