v2ray-core/common/common.go

16 lines
269 B
Go
Raw Normal View History

2016-02-03 22:54:02 +01:00
// Package common contains common utilities that are shared among other packages.
// See each sub-package for detail.
package common
2016-03-10 00:33:01 +01:00
import (
"errors"
)
var (
ErrorAlreadyReleased = errors.New("Object already released.")
)
type Releasable interface {
Release()
}