From da9e27176fd0934d7837077c784ebb1b5e8c98f8 Mon Sep 17 00:00:00 2001 From: Laria Carolin Chabowski Date: Wed, 2 Aug 2017 08:04:52 +0200 Subject: Add local storage --- objects/object.go | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'objects') diff --git a/objects/object.go b/objects/object.go index b192912..1bc9dbf 100644 --- a/objects/object.go +++ b/objects/object.go @@ -16,6 +16,13 @@ const ( OTSnapshot ObjectType = "snapshot" ) +var AllObjectTypes = []ObjectType{ + OTBlob, + OTFile, + OTTree, + OTSnapshot, +} + type RawObject struct { Type ObjectType Payload []byte -- cgit v1.2.3-54-g00ecf