mirror of
https://github.com/bloeys/nterm.git
synced 2025-12-29 14:38:19 +00:00
12 lines
167 B
Go
Executable File
12 lines
167 B
Go
Executable File
package assert
|
|
|
|
import (
|
|
"github.com/bloeys/nterm/consts"
|
|
)
|
|
|
|
func T(check bool, msg string) {
|
|
if consts.Mode_Debug && !check {
|
|
panic("Assert failed: " + msg)
|
|
}
|
|
}
|