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/model/model.go')
-rw-r--r--database/model/model.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/database/model/model.go b/database/model/model.go
index e9d1836f..7a20de16 100644
--- a/database/model/model.go
+++ b/database/model/model.go
@@ -63,6 +63,11 @@ type InboundClientIps struct {
Ips string `json:"ips" form:"ips"`
}
+type HistoryOfSeeders struct {
+ Id int `json:"id" gorm:"primaryKey;autoIncrement"`
+ SeederName string `json:"seederName"`
+}
+
func (i *Inbound) GenXrayInboundConfig() *xray.InboundConfig {
listen := i.Listen
if listen != "" {