package database var SampleData = []Item{ { UUID: "soap", Name: "Bar of Soap", Price: 6999, //Labels: []string{"vegan", "spicy"}, Description: "Example", }, { UUID: "sock", Name: "Sock", Price: 21, //Labels: []string{"vegan", "fish", "nut", "spicy"}, Description: "Example", }, { UUID: "brick", Name: "Brick", Price: 0, //Labels: []string{"spicy"}, Description: "Example", }, { UUID: "toast", Name: "Toast", Price: 4382749832743, //Labels: []string{"gluten"}, Description: "Example", }, { UUID: "water", Name: "water", Price: 1, //Labels: []string{"fish"}, Description: "Example", }, { UUID: "mouldy_bread", Name: "half eaten mouldy bread", Price: -99, //Labels: []string{"nut"}, Description: "Example", }, { UUID: "gwagwa", Name: "GwaGwa", Price: 69, //Labels: []string{"nut"}, //Images: []string{"/dab.jpg"}, }, { UUID: "hogmelon", Name: "Hogermellon", Price: 1111, //Labels: []string{"fish"}, //Images: []string{"/wathog.jpg"}, Description: "Example", }, { UUID: "bluhog", Name: "Blue HOGGGGG", Price: 0, //Labels: []string{"nut", "gluten", "spicy"}, //Images: []string{"/sonichog.jpg"}, Description: "Example", }, }