mirror of
https://github.com/httpjamesm/AnonymousOverflow.git
synced 2024-12-06 19:16:43 +01:00
14 lines
244 B
Go
14 lines
244 B
Go
package types
|
|
|
|
import "html/template"
|
|
|
|
type FilteredQuestion struct {
|
|
Title string
|
|
Body template.HTML
|
|
Timestamp string
|
|
AuthorName string
|
|
AuthorURL string
|
|
ShortenedBody string
|
|
Comments []FilteredComment
|
|
}
|