Sin descripción

123456789101112131415
  1. # -*- encoding: utf-8 -*-
  2. """
  3. License: MIT
  4. Copyright (c) 2019 - present AppSeed.us
  5. """
  6. from flask import Blueprint
  7. blueprint = Blueprint(
  8. 'base_blueprint',
  9. __name__,
  10. url_prefix='',
  11. template_folder='templates',
  12. static_folder='static'
  13. )