11 lines
169 B
Go
11 lines
169 B
Go
package client
|
|
|
|
import "github.com/gorilla/websocket"
|
|
|
|
type Client struct {
|
|
ServerAddress string
|
|
ServerPort int
|
|
taskId int
|
|
conn *websocket.Conn
|
|
}
|