discord-exploits/modules/error.go

9 lines
94 B
Go

package modules
// Check Error Handling
func Check(e error) {
if e != nil {
panic(e)
}
}