10 lines
284 B
Go
10 lines
284 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Meta struct {
|
|
ID string `json:"id" yaml:"id" gorm:"primaryKey"`
|
|
CreatedAt time.Time `json:"created_at" yaml:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at" yaml:"updated_at"`
|
|
Tags []*Tag `json:"tags" yaml:"-" gorm:"-"`
|
|
}
|