sprockets.cli/sstubs/plugin.py
Gavin M. Roy 783f914f08 Work in progress update
- Add stub classes for testing
- Change how testing will work
- Make the logger used in logging configuration based upon a class level constant/attribute
2014-10-15 18:38:20 -04:00

21 lines
200 B
Python

"""
Stub Plugin Module
"""
PRIORITY = 50
def add_cli_arguments(parser):
pass
def initialize(controller):
pass
def on_start(controller):
pass
def on_shutdown(controller):
pass