#!/usr/bin/env python3

from gitty import *

import sys

context = setup({})

# don't DO anything, just tell me the plan...
# context['dry_run'] = True

# figure out the command
if len(sys.argv) > 1:
    context['command'] = sys.argv[1]
else:
    context['command'] = 'help'

exit(command_handler(context))
