types.go 169 B

12345678910
  1. package client
  2. import "github.com/gorilla/websocket"
  3. type Client struct {
  4. ServerAddress string
  5. ServerPort int
  6. taskId int
  7. conn *websocket.Conn
  8. }