some progress on classes
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2021-12-03 20:09:11 +01:00
parent e6569729bb
commit ed4fba74b9
7 changed files with 71 additions and 0 deletions

7
src/clients.py Normal file
View File

@@ -0,0 +1,7 @@
from apps import Application
class Client:
startSlices: list[int] = []
lengthOfTransmission: int = 0
application: Application = Application()