mirror of
https://github.com/Schmenn/discord-exploits.git
synced 2024-12-23 02:45:36 +00:00
9 lines
94 B
Go
9 lines
94 B
Go
|
package modules
|
||
|
|
||
|
// Check Error Handling
|
||
|
func Check(e error) {
|
||
|
if e != nil {
|
||
|
panic(e)
|
||
|
}
|
||
|
}
|