mirror of
https://github.com/logos-storage/logos-storage-network-crawler.git
synced 2026-01-02 13:33:08 +00:00
19 lines
258 B
Nim
19 lines
258 B
Nim
import pkg/chronicles
|
|
import pkg/chronos
|
|
|
|
logScope:
|
|
topics = "main"
|
|
|
|
proc startApplication*() {.async.} =
|
|
proc aaa() {.async.} =
|
|
while true:
|
|
notice "a"
|
|
await sleepAsync(1000)
|
|
|
|
asyncSpawn aaa()
|
|
|
|
await sleepAsync(1000)
|
|
|
|
notice "b"
|
|
|