summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/tools/wave/data/client.py
blob: d5643a5660173e6ce65fa2a93fa3cb987ab8ec10 (plain)
1
2
3
4
5
6
7
8
# mypy: allow-untyped-defs

class Client:
    def __init__(self, session_token):
        self.session_token = session_token

    def send_message(self, message):
        raise Exception("Client.send_message(message) not implemented!")