Added Must func to other

This commit is contained in:
Samantha Becker 2023-08-18 17:14:04 +02:00
parent 8b839f802b
commit 94e1712122

View file

@ -6,3 +6,10 @@ package other
func OutputIntoChannel[T any](out T, target chan T) {
target <- out
}
func Must[T any](val T, err error) T {
if err != nil {
panic(err)
}
return val
}