5 lines
108 B
Python
5 lines
108 B
Python
|
|
from flask import Blueprint
|
||
|
|
|
||
|
|
bp = Blueprint('playgrounds', __name__)
|
||
|
|
|
||
|
|
from app.playgrounds import routes
|