#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
    gs-db-tool
    ~~~~~~~~~~
    
    CLI to manipulate with package DB
    
    :copyright: (c) 2013 by Jauhien Piatlicki
    :license: GPL-2, see LICENSE for more details.
"""

import sys
from gs_db_tool import gs_db_tool

if __name__ == "__main__":
    sys.exit(gs_db_tool.main())
