Files
image-storage/model/model.go

10 lines
205 B
Go

package model
import "time"
type Model struct {
ID int64 `json:"id" db:"id"`
CreatedAt time.Time `json:"createdAt" db:"created_at"`
UpdatedAt time.Time `json:"updatedAt" db:"updated_at"`
}