github.com/soypat/vectytemplater@v0.0.0-20220501050640-d40b24e35168/_templates/websocket-cli/model/item.go (about)

     1  package model
     2  
     3  const (
     4  	HTTPServerAddr = ":8080"
     5  	// Websocket sub protocol.
     6  	WSSubprotocol = "todo"
     7  	// Websocket TCP port number.
     8  	WSServerAddr = ":5757"
     9  )
    10  
    11  // Item contains information of a TODO item.
    12  type Item struct {
    13  	Title       string
    14  	Description string
    15  }
    16  
    17  type ServerReply struct {
    18  	Info string
    19  }