1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-08 02:16:28 -05:00
v2fly/app/subscription/entries/entries.go

10 lines
293 B
Go
Raw Normal View History

2023-11-21 18:03:20 -05:00
package entries
import "github.com/v2fly/v2ray-core/v5/app/subscription/specs"
//go:generate go run github.com/v2fly/v2ray-core/v5/common/errors/errorgen
type Converter interface {
ConvertToAbstractServerConfig(rawConfig []byte, kindHint string) (*specs.SubscriptionServerConfig, error)
}