flask.commands
flask.commands
entry points are used by
Flask to register subcommands
of the flask
command. If a project defines a flask.commands
entry
point named foo
that points to a
Click command object, then once the
project is installed, running flask foo
will invoke the given command.
See the Flask documentation for more
information.
1
2