Initial Release - v1.0.0

This commit is contained in:
Adi Chirilov
2020-08-21 11:54:03 +03:00
parent e3e8c2db6e
commit 8295e32fc2
238 changed files with 42591 additions and 1 deletions

14
app/home/__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(
'home_blueprint',
__name__,
url_prefix='',
template_folder='templates',
static_folder='static'
)