Files
chatservice_concept/api/example_data.go
2024-12-29 19:48:41 -05:00

14 lines
363 B
Go

package api
var messages = []*Message{
{ID: "1", UserID: 1, Body: "hello", Timestamp: 1234567890},
{ID: "2", UserID: 2, Body: "world", Timestamp: 1234567890},
{ID: "3", UserID: 1, Body: "abababa", Timestamp: 1234567890},
{ID: "4", UserID: 2, Body: "bitch", Timestamp: 1234567890},
}
var users = []*User{
{ID: 1, Name: "duby"},
{ID: 2, Name: "astolfo"},
}