1package main 2 3type FeedGenerator struct { 4 ID uint `gorm:"primaryKey"` 5 AtUri string `gorm:"unique"` 6 DisplayName string 7 FeedService string 8 Description *string 9 ContentMode *string 10 AcceptsInteractions *bool 11 CreatedAt string 12}