From e2c31632d326f5f201172dba08b06b422abfa593 Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Mon, 26 Apr 2021 15:16:47 +0530 Subject: FINALLY THE BACKEND AND FRONT END ARE TALKING NOW --- server/main.go | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) (limited to 'server/main.go') diff --git a/server/main.go b/server/main.go index 4f984da..2a02269 100644 --- a/server/main.go +++ b/server/main.go @@ -31,14 +31,40 @@ func main() { } func getAllItems(ctx *gin.Context) { - allItems := [1]Item{ + allItems := [6]Item{ { "Kisan Chair", "Very Good Chair", 100, 9403, + }, { + "Supreme Chair", + "Even Better Chair", + 200, + 9403, + }, { + "Action Houseware", + "Not a chair", + 50, + 69, + }, { + "Coirfit Mattress", + "I wanna sleep", + 900, + 420, + }, { + "AVRO Chair", + "Formerly AVON lol", + 150, + 9403, + }, { + "Mystery Item", + "hehe hehehehe", + 1000, + 177013, }, } + ctx.Header("Content-Type", "application/json") ctx.JSON(http.StatusOK, allItems) } -- cgit v1.2.3