14 lines
142 B
Go
14 lines
142 B
Go
//go:build debug
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/mudler/xlog"
|
|
)
|
|
|
|
func assert(cond bool, msg string) {
|
|
if !cond {
|
|
xlog.Fatal(msg)
|
|
}
|
|
}
|