9 lines
94 B
Python
9 lines
94 B
Python
|
import hardware
|
||
|
|
||
|
|
||
|
class Simulator:
|
||
|
def __init__(self, port):
|
||
|
self.socket = port
|
||
|
|
||
|
|