mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-23 05:08:56 +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() |