You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
254B

  1. # -*- coding: utf-8 -*-
  2. """
  3. flask.__main__
  4. ~~~~~~~~~~~~~~
  5. Alias for flask.run for the command line.
  6. :copyright: 2010 Pallets
  7. :license: BSD-3-Clause
  8. """
  9. if __name__ == "__main__":
  10. from .cli import main
  11. main(as_module=True)