Files
Go-StudyExample/example/Assert.go
T

14 lines
154 B
Go
Raw Normal View History

/*
* @Author : huangzj
* @Time : 2020/7/6 11:06
* @Description
*/
package example
func assert(err error) {
if err != nil {
panic(err)
}
}