aboutsummaryrefslogtreecommitdiff
path: root/internal/models/post.go
blob: d7f1aaa6358ec6c0dea80494f6daac75b87caa8d (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
}