mirror of
https://github.com/status-im/nim-codex.git
synced 2025-02-08 00:44:53 +00:00
11 lines
216 B
Nim
11 lines
216 B
Nim
import pkg/chronos
|
|
|
|
proc asyncSpawn*(future: Future[void], ignore: type CatchableError) =
|
|
proc ignoringError() {.async.} =
|
|
try:
|
|
await future
|
|
except ignore:
|
|
discard
|
|
|
|
asyncSpawn ignoringError()
|