mirror of
https://github.com/mudler/LocalAI
synced 2026-04-21 13:27:21 +00:00
15 lines
174 B
Go
15 lines
174 B
Go
|
|
//go:build debug
|
||
|
|
// +build debug
|
||
|
|
|
||
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/rs/zerolog/log"
|
||
|
|
)
|
||
|
|
|
||
|
|
func assert(cond bool, msg string) {
|
||
|
|
if !cond {
|
||
|
|
log.Fatal().Stack().Msg(msg)
|
||
|
|
}
|
||
|
|
}
|