mirror of
https://github.com/httpjamesm/AnonymousOverflow.git
synced 2024-12-06 19:16:43 +01:00
abfd0cfb6f
refactor: rework some author logic
12 lines
173 B
Go
12 lines
173 B
Go
package types
|
|
|
|
import "html/template"
|
|
|
|
type FilteredComment struct {
|
|
Text template.HTML
|
|
Timestamp string
|
|
AuthorName string
|
|
AuthorURL string
|
|
Upvotes string
|
|
}
|