Refactored

This commit is contained in:
jeroenops
2018-11-13 21:55:59 +01:00
commit b36df4384a
129 changed files with 14400 additions and 0 deletions

11
wo/cli/bootstrap.py Normal file
View File

@@ -0,0 +1,11 @@
"""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)