diff --git a/agent/talk/http.py b/agent/talk/http.py index 7ee90f9..b42228f 100644 --- a/agent/talk/http.py +++ b/agent/talk/http.py @@ -36,6 +36,7 @@ from cybertools.agent.talk.interfaces import IServer, IClient # server implementation +#@server class HttpServer(object): implements(IServer) @@ -82,6 +83,7 @@ class CommandHandler(Resource): # client implementation +#@client class HttpClient(object): implements(IClient) diff --git a/agent/talk/interfaces.py b/agent/talk/interfaces.py index c2211d0..41cd140 100644 --- a/agent/talk/interfaces.py +++ b/agent/talk/interfaces.py @@ -24,8 +24,6 @@ $Id$ from zope.interface import Interface, Attribute -from cybertools.util.jeep import Jeep - class IServer(Interface): """ A server waits for connection requests from a client. A connected