mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-12 02:13:08 +00:00
12 lines
238 B
Nim
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()
|
|
|