mirror of
https://github.com/httpjamesm/AnonymousOverflow.git
synced 2025-04-21 06:19:14 +00:00
11 lines
173 B
Go
11 lines
173 B
Go
package types
|
|
|
|
import "html/template"
|
|
|
|
type FilteredComment struct {
|
|
Text template.HTML
|
|
Timestamp string
|
|
AuthorName string
|
|
AuthorURL string
|
|
Upvotes string
|
|
}
|