14 lines
413 B
Go
14 lines
413 B
Go
package xray
|
|
|
|
import "encoding/json"
|
|
|
|
type InboundConfig struct {
|
|
Listen string `json:"listen"`
|
|
Port int `json:"port"`
|
|
Protocol string `json:"protocol"`
|
|
Settings json.RawMessage `json:"settings"`
|
|
StreamSettings json.RawMessage `json:"streamSettings"`
|
|
Tag string `json:"tag"`
|
|
Sniffing json.RawMessage `json:"sniffing"`
|
|
}
|