create fake database until real DB is implemented

This commit is contained in:
2024-12-30 16:31:48 -05:00
parent cad40565b0
commit d1e77ad4e2
5 changed files with 145 additions and 7 deletions

26
test_data/messages.json Normal file
View File

@@ -0,0 +1,26 @@
[
{
"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
}
]