mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-07-29 11:58:58 +00:00
16 lines
178 B
Go
16 lines
178 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Model struct {
|
|
ID int `gorm:"primarykey"`
|
|
ModelTimestamps
|
|
}
|
|
|
|
type ModelTimestamps struct {
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|