frostfs-node/internal/assert/cond.go

10 lines
129 B
Go
Raw Normal View History

package assert
import "strings"
func True(cond bool, details ...string) {
if !cond {
panic(strings.Join(details, " "))
}
}