mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 16:57:54 +00:00
16 lines
272 B
Python
16 lines
272 B
Python
|
|
|
|
class LoginBase:
|
|
freeTimeExpires = -1
|
|
|
|
def __init__(self, cr):
|
|
self.cr = cr
|
|
|
|
def sendLoginMsg(self, loginName, password, createFlag):
|
|
pass
|
|
|
|
def getErrorCode(self):
|
|
return 0
|
|
|
|
def needToSetParentPassword(self):
|
|
return 0
|