Bump UI & Codebase

This commit is contained in:
App Generator
2021-02-10 11:48:50 +02:00
parent 0f7fc0cd35
commit 0436e2843b
227 changed files with 42345 additions and 1 deletions

14
app/base/__init__.py Normal file
View 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'
)