internal/util/lang.go (
7
lines of code) (
raw
):
package util func Must[T any](t T, err error) T { if err != nil { panic(err) } return t }