mirror of
https://github.com/lowobservable/oec.git
synced 2026-01-11 23:53:04 +00:00
16 lines
342 B
Python
16 lines
342 B
Python
class Session:
|
|
def start(self):
|
|
raise NotImplementedError
|
|
|
|
def terminate(self):
|
|
raise NotImplementedError
|
|
|
|
def handle_host(self):
|
|
raise NotImplementedError
|
|
|
|
def handle_key(self, key, keyboard_modifiers, scan_code):
|
|
raise NotImplementedError
|
|
|
|
class SessionDisconnectedError(Exception):
|
|
pass
|