mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
12 lines
210 B
Go
12 lines
210 B
Go
package extension
|
|
|
|
import "github.com/v2fly/v2ray-core/v5/features"
|
|
|
|
type SubscriptionManager interface {
|
|
features.Feature
|
|
}
|
|
|
|
func SubscriptionManagerType() interface{} {
|
|
return (*SubscriptionManager)(nil)
|
|
}
|