maot-shortner/internal/domain/link.go

12 lines
229 B
Go

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"`
}