mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-10 14:26:26 -05:00
10 lines
293 B
Go
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)
|
|
}
|