9 lines
201 B
Go
9 lines
201 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Meta struct {
|
|
ID string `json:"id" yaml:"id"`
|
|
CreatedAt time.Time `json:"created_at" yaml:"created_at"`
|
|
Tags []*Tag `json:"tags" yaml:"tags"`
|
|
}
|