mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-17 12:33:01 +00:00
11 lines
195 B
Go
11 lines
195 B
Go
|
package task
|
||
|
|
||
|
import "github.com/xtls/xray-core/v1/common"
|
||
|
|
||
|
// Close returns a func() that closes v.
|
||
|
func Close(v interface{}) func() error {
|
||
|
return func() error {
|
||
|
return common.Close(v)
|
||
|
}
|
||
|
}
|