1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-30 11:05:24 +00:00
v2fly/features/extension/subscription.go

12 lines
210 B
Go
Raw Normal View History

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