8 lines
137 B
Python
8 lines
137 B
Python
from flask import Blueprint
|
|
|
|
bp = Blueprint('install', __name__,
|
|
template_folder='')
|
|
|
|
from applets.install import routes
|
|
|