I have an async proc: ``` proc sendMessage[T](wsc: WebSocket, msgField: T, topic: TOPIC): Future[void] {.async.} = .... ``` can I export as python module?
I have an async proc:
can I export as python module?