mirror of
https://github.com/fumiama/tienyik.git
synced 2026-06-04 23:10:26 +08:00
9 lines
94 B
Go
9 lines
94 B
Go
package op
|
|
|
|
func Must[T any](x T, err error) T {
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return x
|
|
}
|