Search Apps Documentation Source Content File Folder Download Copy Actions Download State String Boolean Number Struct Map Slice Pointer Function Closure Reference Nil Package Type Interface Unknown

util.gno

0.07 Kb · 7 lines
1package blog
2
3func checkErr(err error) {
4	if err != nil {
5		panic(err)
6	}
7}