Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'database')
-rw-r--r--database/model/model.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/database/model/model.go b/database/model/model.go
index 62cfac41..18211ef8 100644
--- a/database/model/model.go
+++ b/database/model/model.go
@@ -46,7 +46,6 @@ type Inbound struct {
StreamSettings string `json:"streamSettings" form:"streamSettings"`
Tag string `json:"tag" form:"tag" gorm:"unique"`
Sniffing string `json:"sniffing" form:"sniffing"`
- Allocate string `json:"allocate" form:"allocate"`
}
type OutboundTraffics struct {
@@ -81,7 +80,6 @@ func (i *Inbound) GenXrayInboundConfig() *xray.InboundConfig {
StreamSettings: json_util.RawMessage(i.StreamSettings),
Tag: i.Tag,
Sniffing: json_util.RawMessage(i.Sniffing),
- Allocate: json_util.RawMessage(i.Allocate),
}
}