1
0
mirror of https://github.com/fumiama/tienyik.git synced 2026-06-04 23:10:26 +08:00
Files
tienyik/internal/op/chain.go
2025-10-30 23:23:45 +08:00

9 lines
94 B
Go

package op
func Must[T any](x T, err error) T {
if err != nil {
panic(err)
}
return x
}