mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-16 01:17:30 -05:00
10 lines
132 B
Go
10 lines
132 B
Go
package task
|
|
|
|
import "v2ray.com/core/common"
|
|
|
|
func Close(v interface{}) Task {
|
|
return func() error {
|
|
return common.Close(v)
|
|
}
|
|
}
|