8 lines
222 B
Go
8 lines
222 B
Go
package models
|
|
|
|
type SyncTarget struct {
|
|
Base
|
|
Endpoint string `gorm:"<-;type:string" json:"endpoint"`
|
|
Token string `gorm:"<-;type:string" json:"token"`
|
|
Included []Project `gorm:"many2many:synced_projects;"`
|
|
}
|