blob: 0d1cd6076856dbf767dff51869104eb4b4cb6cfa (
plain)
1
2
3
4
5
6
7
8
9
|
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"`
}
|