Files
sing-box-extended/common/xray/task/common.go
2025-06-08 19:35:59 +03:00

11 lines
200 B
Go

package task
import "github.com/sagernet/sing-box/common/xray"
// Close returns a func() that closes v.
func Close(v interface{}) func() error {
return func() error {
return common.Close(v)
}
}