We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6944d8a commit dde5fabCopy full SHA for dde5fab
message/message.go
@@ -0,0 +1,11 @@
1
+package message
2
+
3
+import "time"
4
5
+type Message struct {
6
+ ID int `json:"id"`
7
+ SendedAt time.Time `json:"sendedAt"`
8
+ ReceivedAt time.Time `json:"receivedAt"`
9
+ InsertedAt time.Time `json:"insertedAt"`
10
+ Message string `json:"message"`
11
+}
0 commit comments