mirror of
https://github.com/status-im/nim-dagger.git
synced 2025-01-09 22:25:51 +00:00
11 lines
214 B
Nim
11 lines
214 B
Nim
|
import pkg/chronos
|
||
|
|
||
|
proc asyncSpawn*(future: Future[void], ignore: type CatchableError) =
|
||
|
proc ignoringError {.async.} =
|
||
|
try:
|
||
|
await future
|
||
|
except ignore:
|
||
|
discard
|
||
|
asyncSpawn ignoringError()
|
||
|
|