toxencryptsave lib loading
This commit is contained in:
parent
f445a79e11
commit
b0e1aeb0f0
3 changed files with 36 additions and 2 deletions
17
src/toxencryptsave.py
Normal file
17
src/toxencryptsave.py
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import libtox
|
||||
import util
|
||||
|
||||
|
||||
# TODO: add enums and methods
|
||||
|
||||
class LibToxEncryptSave(util.Singleton):
|
||||
|
||||
libtoxencryptsave = libtox.LibToxEncryptSave()
|
||||
|
||||
def __init__(self, password=''):
|
||||
self._password = password
|
||||
|
||||
def set_password(self, value):
|
||||
self._password = value
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue