You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
458 B

9 years ago
// Package common contains common utilities that are shared among other packages.
// See each sub-package for detail.
package common
//go:generate go run $GOPATH/src/v2ray.com/core/common/errors/errorgen/main.go -pkg common -path Common
8 years ago
// Must panics if err is not nil.
func Must(err error) {
if err != nil {
panic(err)
}
}
7 years ago
7 years ago
// Must2 panics if the second parameter is not nil.
7 years ago
func Must2(v interface{}, err error) {
if err != nil {
panic(err)
}
}