Files
black-dashboard-flask/apps/home/__init__.py
2021-11-10 17:17:23 +02:00

13 lines
183 B
Python

# -*- encoding: utf-8 -*-
"""
Copyright (c) 2019 - present AppSeed.us
"""
from flask import Blueprint
blueprint = Blueprint(
'home_blueprint',
__name__,
url_prefix=''
)