feat: init repo

This commit is contained in:
Halyul
2021-05-26 02:24:18 -04:00
commit 880d638a8f
34 changed files with 602791 additions and 0 deletions

12
lib/server.py Normal file
View File

@@ -0,0 +1,12 @@
class Server:
def __init__(self, port, config) -> None:
self.port = port
self.config = config
def start(self):
return
def stop(self):
return