mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
follow up https://github.com/nim-lang/Nim/pull/22851 follow up https://github.com/nim-lang/Nim/pull/22873
10 lines
288 B
Nim
10 lines
288 B
Nim
## Exports [asyncmacro](asyncmacro.html) and [asyncfutures](asyncfutures.html) for native backends,
|
|
## and [asyncjs](asyncjs.html) on the JS backend.
|
|
|
|
when defined(js):
|
|
import std/asyncjs
|
|
export asyncjs
|
|
else:
|
|
import std/[asyncmacro, asyncfutures]
|
|
export asyncmacro, asyncfutures
|