This repository has been archived on 2024-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
2023-03-11 12:23:27 +08:00

9 lines
114 B
Go

package utils
func MustOK[T any](result T, ok bool) T {
if ok {
return result
}
panic("operation failed")
}