From 0e28f2b1789a7fbf8855dad4e757af9c254cd618 Mon Sep 17 00:00:00 2001 From: Dikiy13371 Date: Tue, 7 Oct 2025 23:27:30 +0300 Subject: [PATCH] delete type user struct in model.go --- database/model/model.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/database/model/model.go b/database/model/model.go index 4ca39d87..c9c5d268 100644 --- a/database/model/model.go +++ b/database/model/model.go @@ -23,13 +23,6 @@ const ( WireGuard Protocol = "wireguard" ) -// User represents a user account in the 3x-ui panel. -type User struct { - Id int `json:"id" gorm:"primaryKey;autoIncrement"` - Username string `json:"username"` - Password string `json:"password"` -} - // Inbound represents an Xray inbound configuration with traffic statistics and settings. type Inbound struct { Id int `json:"id" form:"id" gorm:"primaryKey;autoIncrement"` // Unique identifier