github.com/marwan-at-work/gqlgen@v0.7.2/example/chat/models_gen.go (about)

     1  // Code generated by github.com/99designs/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  }