mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2025-01-03 18:48:53 +00:00
7 lines
139 B
Python
7 lines
139 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
import mock
|
||
|
|
||
|
service = mock.SecretService()
|
||
|
service.algorithms = { "plain": mock.PlainAlgorithm() }
|
||
|
service.listen()
|