dsfx/pkg/assert/assert.go

9 lines
161 B
Go
Raw Normal View History

2025-03-08 15:07:27 -05:00
package assert
// Assert panics if the given truth value is false, with the given message.
func Assert(truth bool, msg string) {
if !truth {
panic(msg)
}
}