12 строки
187 B
Go
12 строки
187 B
Go
package concerns
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// Timestamped provides functionality.
|
|
type Timestamped struct {
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|