12 lines
210 B
Go
12 lines
210 B
Go
package domain
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Link struct {
|
|
ID int64 `json:"id"`
|
|
ShortURL string `json:"short_url"`
|
|
LongURL string `json:"long_url"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
}
|