14 lines
318 B
Go
14 lines
318 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// Snippet merepresentasikan satu baris data dari database PostgreSQL
|
|
type Snippet struct {
|
|
ID int64 `json:"id"`
|
|
Title string `json:"title"`
|
|
Content string `json:"content"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
ExpiresAt time.Time `json:"expires_at"`
|
|
} |