package domain import ( "time" ) type Link struct { ID int64 `json:"id"` ShortURL string `json:"short_url" gorm:"uniqueIndex"` LongURL string `json:"long_url"` CreatedAt time.Time `json:"created_at"` }