8 lines
260 B
Python
8 lines
260 B
Python
|
import libagent.gpg
|
||
|
import libagent.ssh
|
||
|
from libagent.device.fake_device import FakeDevice as DeviceType
|
||
|
|
||
|
ssh_agent = lambda: libagent.ssh.main(DeviceType)
|
||
|
gpg_tool = lambda: libagent.gpg.main(DeviceType)
|
||
|
gpg_agent = lambda: libagent.gpg.run_agent(DeviceType)
|