probo/models/meta.go
2023-09-22 10:29:10 +02:00

8 lines
154 B
Go

package models
import "time"
type Meta struct {
ID string `json:"id" yaml:"id"`
CreatedAt time.Time `json:"created_at" yaml:"created_at"`
}