add: query user subscribe node list

This commit is contained in:
EUForest
2025-10-13 19:16:36 +08:00
parent e99058b969
commit 640b8c0805
7 changed files with 299 additions and 0 deletions
+1
View File
@@ -23,6 +23,7 @@ type (
UpdateServer(ctx context.Context, data *Server, tx ...*gorm.DB) error
DeleteServer(ctx context.Context, id int64, tx ...*gorm.DB) error
Transaction(ctx context.Context, fn func(db *gorm.DB) error) error
QueryServerList(ctx context.Context, ids []int64) (servers []*Server, err error)
}
NodeModel interface {