7 lines
98 B
Python
7 lines
98 B
Python
from flask import Blueprint
|
|
|
|
bp = Blueprint('webui', __name__)
|
|
|
|
from applets.webui import routes
|
|
|