__init__.py 183 B

123456789101112
  1. # -*- encoding: utf-8 -*-
  2. """
  3. Copyright (c) 2019 - present AppSeed.us
  4. """
  5. from flask import Blueprint
  6. blueprint = Blueprint(
  7. 'home_blueprint',
  8. __name__,
  9. url_prefix=''
  10. )