11 lines
100 B
Go
11 lines
100 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Model struct {
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|