mirror of
https://github.com/servo/servo
synced 2026-05-12 09:56:50 +02:00
7 lines
215 B
Python
7 lines
215 B
Python
class Client(object):
|
|
def __init__(self, session_token):
|
|
self.session_token = session_token
|
|
|
|
def send_message(self, message):
|
|
raise Exception("Client.send_message(message) not implemented!")
|