remove sample data

This commit is contained in:
2025-03-24 14:11:24 -04:00
parent 8948640311
commit e45b426e68

View File

@@ -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"},
}