From e45b426e68acd81bf2f2ad4e95144b0d59e043f7 Mon Sep 17 00:00:00 2001 From: William P Date: Mon, 24 Mar 2025 14:11:24 -0400 Subject: [PATCH] remove sample data --- api/example_data.go | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 api/example_data.go diff --git a/api/example_data.go b/api/example_data.go deleted file mode 100644 index db2cd52..0000000 --- a/api/example_data.go +++ /dev/null @@ -1,15 +0,0 @@ -package api - -import "time" - -var messages = []*Message{ - {ID: "1", UserID: 1, Body: "hello", Timestamp: time.Now()}, - {ID: "2", UserID: 2, Body: "world", Timestamp: time.Now()}, - {ID: "3", UserID: 1, Body: "abababa", Timestamp: time.Now()}, - {ID: "4", UserID: 2, Body: "bitch", Timestamp: time.Now()}, -} - -var users = []*User{ - {ID: 1, Name: "duby"}, - {ID: 2, Name: "astolfo"}, -}