aboutsummaryrefslogtreecommitdiff
path: root/internal/models/post.go
blob: 95dde58090421087496be310e3fd28949447bc4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package models

import (
	"html/template"
	"time"
)

type Post struct {
	Id            int
	Name          string
	Time          time.Time
	FormattedTime string
	Brief         template.HTML
	Content       template.HTML
}