logos-storage-nim/codex/utils/asyncspawn.nim
2023-07-17 13:39:25 +02:00

12 lines
238 B
Nim

import pkg/chronos
import ../asyncyeah
proc asyncSpawn*(future: Future[void], ignore: type CatchableError) =
proc ignoringError {.asyncyeah.} =
try:
await future
except ignore:
discard
asyncSpawn ignoringError()