#!/Users/sthapa/anaconda/envs/vc3_client/bin/python
#
# Very simple wrapper to go in /usr/bin to be executed by init script. 
#
from vc3client.clientcli import VC3ClientCLI

def main():
    '''
    Simplest possible invocation of Infoservice program. Does not have the .py extension
    to keep the RPM building system happy. 
    '''
    srv = VC3ClientCLI()
    srv.run()
        
if __name__ == "__main__":
    main()
