Search Apps Documentation Source Content File Folder Download Copy Actions Download

saferun.gno

0.14 Kb · 10 lines
 1package saferun
 2
 3type SafeRunner struct{}
 4
 5func (r *SafeRunner) Run(fn func()) {
 6	defer func() { recover() }()
 7	fn()
 8}
 9
10var PSafe = &SafeRunner{}