1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-20 10:56:07 -04:00
v2fly/features/extension/subscription.go

12 lines
210 B
Go
Raw Normal View History

2023-11-21 18:03:20 -05:00
package extension
import "github.com/v2fly/v2ray-core/v5/features"
type SubscriptionManager interface {
features.Feature
}
func SubscriptionManagerType() interface{} {
return (*SubscriptionManager)(nil)
}