1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-12 02:40:42 +00:00
v2fly/app/subscription/entries/entries.go
2023-11-26 10:55:27 +00:00

10 lines
293 B
Go

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)
}