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