Files
aklive2d/lib/server.py
2021-05-26 02:24:18 -04:00

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