Files
black-dashboard-flask/apps/authentication/__init__.py
App Generator 40a4fe974f Codebase Update
2023-06-06 11:03:31 +03:00

13 lines
193 B
Python

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