mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-10 12:30:58 +00:00
8 lines
114 B
Go
8 lines
114 B
Go
package utils
|
|
|
|
func MustOK[T any](result T, ok bool) T {
|
|
if ok {
|
|
return result
|
|
}
|
|
panic("operation failed")
|
|
}
|