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

12 lines
173 B
Go

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