diff --git a/octane/commands/__init__.py b/octane/commands/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/octane/commands/prepare.py b/octane/commands/prepare.py new file mode 100644 index 00000000..85dbde08 --- /dev/null +++ b/octane/commands/prepare.py @@ -0,0 +1,5 @@ +from cliff import command as cmd + +class PrepareCommand(cmd.Command): + def take_action(self, parsed_args): + pass diff --git a/setup.cfg b/setup.cfg index 80b622fd..6199b9b3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -27,3 +27,5 @@ packages = [entry_points] console_scripts = octane = octane.app:main +octane = + prepare = octane.commands.prepare:PrepareCommand