Bump UI & Codebase
This commit is contained in:
14
app/base/__init__.py
Normal file
14
app/base/__init__.py
Normal file
@ -0,0 +1,14 @@
|
||||
# -*- 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'
|
||||
)
|
||||
Reference in New Issue
Block a user