cfone/app/base/__init__.py

15 lines
244 B
Python
Raw Normal View History

2021-09-23 03:46:35 +00:00
# -*- encoding: utf-8 -*-
"""
Copyright (c) 2019 - present AppSeed.us
"""
from flask import Blueprint
blueprint = Blueprint(
'base_blueprint',
__name__,
url_prefix='',
template_folder='templates',
static_folder='static'
)