rename snapshots.go; start rewrite of create snapshot
diff --git a/openstack/blockstorage/v1/snapshots/results.go b/openstack/blockstorage/v1/snapshots/results.go
new file mode 100644
index 0000000..db59b8e
--- /dev/null
+++ b/openstack/blockstorage/v1/snapshots/results.go
@@ -0,0 +1,12 @@
+package snapshots
+
+type Snapshot struct {
+	CreatedAt   string
+	Description string
+	ID          string
+	Metadata    map[string]interface{}
+	Name        string
+	Size        int
+	Status      string
+	VolumeID    string
+}