Skip to content

Instantly share code, notes, and snippets.

View remdragon's full-sized avatar

Royce Mitchell remdragon

View GitHub Profile
@remdragon
remdragon / test.py
Last active July 9, 2020 14:56
trio_win32
import trio_win32
async def main() -> int:
# TODO: start other tasks here...
await trio_win32.event_loop()
return 0
sys.exit ( trio_win32.run ( main ) )