4 lines
99 B
Python
4 lines
99 B
Python
|
from flask import Blueprint
|
||
|
from utils import api_wrapper
|
||
|
|
||
|
blueprint = Blueprint("admin", __name__)
|