probo/models/meta.go
2023-10-07 11:43:12 +02:00

9 lines
198 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:"-"`
}