1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-27 01:45:23 +00:00
v2fly/common/common.go
2017-02-02 14:42:31 +01:00

11 lines
226 B
Go

// Package common contains common utilities that are shared among other packages.
// See each sub-package for detail.
package common
// Must panics if err is not nil.
func Must(err error) {
if err != nil {
panic(err)
}
}