# Here you can create play commands that are specific to the module, and extend existing commands MODULE = 'play-file-auth' # Commands that are specific to your module COMMANDS = ['play-file-auth:hello'] def execute(**kargs): command = kargs.get("command") app = kargs.get("app") args = kargs.get("args") env = kargs.get("env") if command == "play-file-auth:hello": print "~ Hello" # This will be executed before any command (new, run...) def before(**kargs): command = kargs.get("command") app = kargs.get("app") args = kargs.get("args") env = kargs.get("env") # This will be executed after any command (new, run...) def after(**kargs): command = kargs.get("command") app = kargs.get("app") args = kargs.get("args") env = kargs.get("env") if command == "new": pass