mirror of
https://github.com/bloeys/nmage.git
synced 2025-12-29 13:28:20 +00:00
13 lines
213 B
Go
Executable File
13 lines
213 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 {
|
|
logging.ErrLog.Panicln("Assert failed:", msg)
|
|
}
|
|
}
|