mirror of
https://github.com/status-im/nim-chronos.git
synced 2025-01-09 11:02:40 +00:00
24be151cf3
* introduce user guide based on `mdbook` * set up structure for adding simple `chronos` usage examples * move most readme content to book * ci deploys book and api guide automatically * remove most of existing engine docs (obsolete)
17 lines
478 B
Nim
17 lines
478 B
Nim
#
|
|
# Chronos
|
|
#
|
|
# (c) Copyright 2015 Dominik Picheta
|
|
# (c) Copyright 2018-Present Status Research & Development GmbH
|
|
#
|
|
# Licensed under either of
|
|
# Apache License, version 2.0, (LICENSE-APACHEv2)
|
|
# MIT license (LICENSE-MIT)
|
|
|
|
{.push raises: [].}
|
|
|
|
import ./internal/[asyncengine, asyncfutures, asyncmacro, errors]
|
|
|
|
export asyncfutures, asyncengine, errors
|
|
export asyncmacro.async, asyncmacro.await, asyncmacro.awaitne
|