AnonymousOverflow/src/types/comment.go
httpjamesm abfd0cfb6f
feat: SO/SE converter
refactor: rework some author logic
2023-02-20 14:17:24 -05:00

11 lines
173 B
Go

package types
import "html/template"
type FilteredComment struct {
Text template.HTML
Timestamp string
AuthorName string
AuthorURL string
Upvotes string
}