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