コード例 #1
0
ファイル: app.py プロジェクト: toopy/west-socket
 def __init__(self, environ, **config):
     BaseApp.__init__(self, environ, **config)
     # url mapping
     self.connect("/socket", action="call")
     # open sockets
     self.urls = dict()
     self.__open_sockets()
コード例 #2
0
ファイル: app.py プロジェクト: toopy/west
 def __init__(self, environ, **config):
     BaseApp.__init__(self, environ, **config)
     # connect
     self.connect("/pong", action="pong")