config.go 243 B

123456789
  1. package model
  2. type Config struct {
  3. Model
  4. Name string `json:"name"`
  5. Filepath string `json:"filepath"`
  6. SyncNodeIds []uint64 `json:"sync_node_ids" gorm:"serializer:json"`
  7. SyncOverwrite bool `json:"sync_overwrite"`
  8. }