Files
black-dashboard-flask/apps/home/__init__.py
App Generator 40a4fe974f Codebase Update
2023-06-06 11:03:31 +03: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=''
)