Files
nmage/asserts/asserts.go
2022-01-26 08:04:50 +04:00

16 lines
223 B
Go
Executable File

package asserts
import (
"github.com/bloeys/nmage/consts"
"github.com/bloeys/nmage/logging"
)
func T(check bool, msg string) {
if !consts.Debug || check {
return
}
logging.ErrLog.Panicln("Assert failed:", msg)
}