do the magic, this will not run
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Torma Kristóf 2021-04-25 17:12:20 +02:00
parent e3d1280cb6
commit edfd2bd889
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047
3 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python3
import json
import logging
import os

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python3
import json
import os

View File

@ -1,6 +1,7 @@
#!/usr/bin/env python3
from server.authentication import Authetication
from authentication import Authetication
from executor import Executor
from netwrapper import NetWrapper
class Server:
@ -11,6 +12,7 @@ class Server:
self.sessionTimeout = sessionTimeout
self.availableServer = availableServer
self.executor = Executor(homeDirectory)
self.networkInstance = NetWrapper(_,_,self)
def login(self, username: str, password: str) -> bool:
auth = Authetication()