5 lines
98 B
Python
5 lines
98 B
Python
from flask import Blueprint
|
|
|
|
blueprint = Blueprint('endpoints', __name__)
|
|
|
|
from . import endpoints |