Browse Source

Add placeholder wormhole send

unifiedWindowUI
Luke Murphy 4 years ago
parent
commit
6a9892b4de
No known key found for this signature in database GPG Key ID: 5E2EF5A63E3718CC
  1. 6
      dropship.py

6
dropship.py

@ -92,6 +92,12 @@ class DropShip:
# enabled by https://github.com/jhenstridge/asyncio-glib/pull/7
self._running.set_result(None)
async def wormhole_send(self, fpath):
"""Run `wormhole send` on a local file path."""
log.info("Pretending to start wormhole send...")
await asyncio.sleep(2)
log.info("Pretending to finish wormhole send...")
async def main():
"""The application entrypoint."""

Loading…
Cancel
Save