12 lines
188 B
Python
12 lines
188 B
Python
|
|
class Server:
|
|
|
|
def __init__(self, port, config) -> None:
|
|
self.port = port
|
|
self.config = config
|
|
|
|
def start(self):
|
|
return
|
|
|
|
def stop(self):
|
|
return |