summaryrefslogtreecommitdiff
path: root/imagestore/storeobject.go
diff options
context:
space:
mode:
authorhorus_arch2015-04-19 22:09:52 +0200
committerhorus_arch2015-04-19 22:09:52 +0200
commit01e9a34952bd6ddd383680b0ca2312e476ad07a6 (patch)
tree00902575e5c271cc5d35ea65aa8795b8caeb97bc /imagestore/storeobject.go
downloadmandible-01e9a34952bd6ddd383680b0ca2312e476ad07a6.tar.gz
Initial commit.
Diffstat (limited to 'imagestore/storeobject.go')
-rw-r--r--imagestore/storeobject.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/imagestore/storeobject.go b/imagestore/storeobject.go
new file mode 100644
index 0000000..f834360
--- /dev/null
+++ b/imagestore/storeobject.go
@@ -0,0 +1,8 @@
+package imagestore
+
+type StoreObject struct {
+ Name string // Unique identifier
+ MimeType string // i.e. image/jpg
+ Type string // i.e. thumb
+ Url string // if publicly available
+}