mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-07-23 08:51:59 +00:00
16 lines
269 B
Go
16 lines
269 B
Go
// Package common contains common utilities that are shared among other packages.
|
|
// See each sub-package for detail.
|
|
package common
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrorAlreadyReleased = errors.New("Object already released.")
|
|
)
|
|
|
|
type Releasable interface {
|
|
Release()
|
|
}
|