remove old agent classes

This commit is contained in:
Russell Haering 2013-12-20 15:29:23 -08:00
parent 508195ef5c
commit ffcbbd49e0
1 changed files with 0 additions and 10 deletions

View File

@ -66,13 +66,3 @@ class BaseTeethAgent(object):
self.started_at = time.time()
serving.run_simple(self.listen_host, self.listen_port, self.api)
class StandbyAgent(BaseTeethAgent):
def __init__(self, listen_host, listen_port):
super(StandbyAgent, self).__init__(listen_host, listen_port, 'STANDBY')
class DecomAgent(BaseTeethAgent):
def __init__(self, listen_host, listen_port):
super(StandbyAgent, self).__init__(listen_host, listen_port, 'DECOM')