mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 02:15:48 +02:00
8 lines
189 B
Go
8 lines
189 B
Go
package model
|
|
|
|
type Stream struct {
|
|
Model
|
|
Path string `json:"path"`
|
|
Advanced bool `json:"advanced"`
|
|
SyncNodeIDs []uint64 `json:"sync_node_ids" gorm:"serializer:json"`
|
|
}
|