Send files from one computer to another! A graphical interface for magic-wormhole https://magic-wormhole.readthedocs.io
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

19 lines
346 B

from trio import open_nursery, sleep_forever
from trio_gtk import run
from dropship.dropship import DropShip
def main():
"""Trio main entrypoint."""
async def _main():
async with open_nursery() as nursery:
DropShip(nursery)
await sleep_forever()
run(_main)
if __name__ == "__main__":
main()