feat: sync streams

This commit is contained in:
Jacky 2025-02-25 15:53:08 +08:00
parent 082ccc18bc
commit 34fa4eb204
No known key found for this signature in database
GPG key ID: 215C21B10DF38B4D
27 changed files with 788 additions and 557 deletions

View file

@ -2,6 +2,7 @@ package model
type Stream struct {
Model
Path string `json:"path"`
Advanced bool `json:"advanced"`
Path string `json:"path"`
Advanced bool `json:"advanced"`
SyncNodeIDs []uint64 `json:"sync_node_ids" gorm:"serializer:json"`
}