mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
* stdlib organization & documentation improvements * fix CI * Update doc/lib.md Co-authored-by: Juan Carlos <juancarlospaco@gmail.com> * fix ci, remove jshttpcore, export in jsfetch instead * fix alphabetical order violations * add cmdline, db_odbc Co-authored-by: Juan Carlos <juancarlospaco@gmail.com>
10 lines
278 B
Nim
10 lines
278 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 asyncjs
|
|
export asyncjs
|
|
else:
|
|
import asyncmacro, asyncfutures
|
|
export asyncmacro, asyncfutures
|