2023-09-22 10:29:10 +02:00
|
|
|
package models
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
type Meta struct {
|
|
|
|
ID string `json:"id" yaml:"id"`
|
|
|
|
CreatedAt time.Time `json:"created_at" yaml:"created_at"`
|
2023-10-07 11:43:12 +02:00
|
|
|
Tags []*Tag `json:"tags" yaml:"-"`
|
2023-09-22 10:29:10 +02:00
|
|
|
}
|