x/pkg.go

12 lines
111 B
Go
Raw Normal View History

2024-09-06 20:29:29 -07:00
package x
import (
"errors"
)
func Assert(cond bool, msg string) {
if cond {
panic(errors.New(msg))
}
}