Files
WPIQ/wo/cli/bootstrap.py
2019-09-23 16:35:20 +02:00

13 lines
299 B
Python

"""WordOps bootstrapping."""
# All built-in application controllers should be imported, and registered
# in this file in the same way as WOBaseController.
from cement.core import handler
from wo.cli.controllers.base import WOBaseController
def load(app):
handler.register(WOBaseController)