Files
WPIQ/wo/cli/bootstrap.py

12 lines
271 B
Python
Raw Permalink Normal View History

2018-11-13 21:55:59 +01:00
"""WordOps bootstrapping."""
# All built-in application controllers should be imported, and registered
# in this file in the same way as WOBaseController.
2019-09-23 16:35:20 +02:00
2018-11-13 21:55:59 +01:00
from wo.cli.controllers.base import WOBaseController
def load(app):
2019-09-24 00:01:20 +02:00
app.handler.register(WOBaseController)