mirror of
https://github.com/logos-storage/nim-chronos.git
synced 2026-01-03 05:53:06 +00:00
20 lines
237 B
Markdown
20 lines
237 B
Markdown
|
|
## Getting started
|
||
|
|
|
||
|
|
Install `chronos` using `nimble`:
|
||
|
|
|
||
|
|
```text
|
||
|
|
nimble install chronos
|
||
|
|
```
|
||
|
|
|
||
|
|
or add a dependency to your `.nimble` file:
|
||
|
|
|
||
|
|
```text
|
||
|
|
requires "chronos"
|
||
|
|
```
|
||
|
|
|
||
|
|
and start using it:
|
||
|
|
|
||
|
|
```nim
|
||
|
|
{{#include ../examples/httpget.nim}}
|
||
|
|
```
|