Skip to content

Commit dde5fab

Browse files
committed
message package
1 parent 6944d8a commit dde5fab

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

message/message.go

+11
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)