1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-06 03:54:22 -04:00
v2fly/common/task/common.go

10 lines
132 B
Go
Raw Normal View History

2018-05-27 07:02:29 -04:00
package task
import "v2ray.com/core/common"
func Close(v interface{}) Task {
return func() error {
return common.Close(v)
}
}