github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/examples/gno.land/r/gnoland/pages/util.gno (about)

     1  package gnopages
     2  
     3  func checkErr(err error) {
     4  	if err != nil {
     5  		panic(err)
     6  	}
     7  }