#!/usr/bin/env python

import StationComputer
from StationComputer import StationComputerClientThread


#main processing
serverIp = "10.200.65.248"
serverPort = 4545

#start the Open Protocol Client Thread
clientThread = StationComputerClientThread(serverIp, serverPort)
clientThread.start()
clientThread.join()

