7 lines
142 B
Python
7 lines
142 B
Python
from flask import Blueprint
|
|
routes = Blueprint('routes', __name__)
|
|
|
|
from .dashboard import *
|
|
from ._matches import *
|
|
from ._convenor import *
|