1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-01-06 09:15:37 -05:00

release interface

This commit is contained in:
v2ray
2016-03-10 00:33:01 +01:00
parent be90c04deb
commit c7f6426c88

View File

@@ -1,3 +1,15 @@
// 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()
}