mirror of
https://github.com/status-im/nim-ethers.git
synced 2025-01-28 08:05:09 +00:00
7 lines
102 B
Nim
7 lines
102 B
Nim
template untilCancelled*(body) =
|
|
try:
|
|
while true:
|
|
body
|
|
except CancelledError:
|
|
raise
|