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