mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-05-14 00:51:12 +03:00
15 lines
296 B
Go
15 lines
296 B
Go
package warp
|
|
|
|
import "github.com/sagernet/sing-box/common/cloudflare"
|
|
|
|
type Config struct {
|
|
PrivateKey string `json:"private_key"`
|
|
Interface struct {
|
|
Addresses struct {
|
|
V4 string `json:"v4"`
|
|
V6 string `json:"v6"`
|
|
} `json:"addresses"`
|
|
} `json:"interface"`
|
|
Peers []cloudflare.Peer
|
|
}
|