github.com/shish-dev/gqlgen@v0.99.0/codegen/config/testdata/autobinding/chat/message.go (about) 1 package chat 2 3 import ( 4 "time" 5 ) 6 7 type Message struct { 8 ID string `json:"id"` 9 Text string `json:"text"` 10 CreatedBy string `json:"createdBy"` 11 CreatedAt time.Time `json:"createdAt"` 12 }