mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-10 18:05:48 +02:00
9 lines
243 B
Go
9 lines
243 B
Go
package model
|
|
|
|
type Config struct {
|
|
Model
|
|
Name string `json:"name"`
|
|
Filepath string `json:"filepath"`
|
|
SyncNodeIds []uint64 `json:"sync_node_ids" gorm:"serializer:json"`
|
|
SyncOverwrite bool `json:"sync_overwrite"`
|
|
}
|