12 lines
196 B
Go
12 lines
196 B
Go
package blogviewer
|
|
|
|
type BlogFileData struct {
|
|
Header string `bson:"header"`
|
|
Blocks []*Block `bson:"blocks"`
|
|
}
|
|
|
|
type Block struct {
|
|
Type string `bson:"type"`
|
|
Data []string `bson:"data"`
|
|
}
|