10 lines
269 B
Python
10 lines
269 B
Python
|
""" Client App """
|
||
|
|
||
|
import os
|
||
|
from flask import Blueprint, render_template
|
||
|
|
||
|
client_bp = Blueprint('client_app', __name__,
|
||
|
static_folder='../frontend/dist/assets/',
|
||
|
template_folder='../frontend/dist/',
|
||
|
)
|