mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
5 lines
171 B
Python
5 lines
171 B
Python
class Token:
|
|
def __init__(self, endpoint, value=None, idle_wait=False):
|
|
self.endpoint = endpoint
|
|
self.value = value
|
|
self.idle_wait = idle_wait
|