github.com/HaswinVidanage/gqlgen@v0.8.1-0.20220609041233-69528c1bf712/example/chat/models_gen.go (about) 1 // Code generated by github.com/HaswinVidanage/gqlgen, DO NOT EDIT. 2 3 package chat 4 5 import ( 6 "time" 7 ) 8 9 type Message struct { 10 ID string `json:"id"` 11 Text string `json:"text"` 12 CreatedBy string `json:"createdBy"` 13 CreatedAt time.Time `json:"createdAt"` 14 }