aboutsummaryrefslogtreecommitdiff
blob: 7bd47f4761c00e8426d689a9d685d176a54d3648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/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())