#!/usr/bin/python

import logging
logging.basicConfig(level=logging.INFO, format='%(message)s')

import os
import sys
sys.path.extend([os.path.join(os.path.dirname(os.path.realpath(__file__)), '..')])

try:
  from grow import submodules
  submodules.fix_imports()
except ImportError:
  pass

from google.apputils import appcommands
from grow import commands


def main(argv):
  commands.add_commands()


if __name__ == '__main__':
  appcommands.Run()
