blob: a27d0393cb9c4fe3c2ba5bedb20f95d21c789691 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package image
// PostMeta hold data for an image post
type PostMeta struct {
FilePath string `redis:"file_path"`
CreatedAt string `redis:"created_at"`
UserID string `redis:"user_id"`
MimeType string `redis:"mime_type"`
Title string `redis:"title"`
Desc string `redis:"desc"`
}
|