MRE_APP/apps/home/__init__.py
2025-03-14 13:37:08 -06: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=''
)