mirror of
https://github.com/lzh-1625/go_process_manager.git
synced 2025-10-06 08:27:03 +08:00
9 lines
109 B
Go
9 lines
109 B
Go
package utils
|
|
|
|
func Unwarp[T any](result T, err error) T {
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return result
|
|
}
|