2025-01-29 23:20:44 +01:00
|
|
|
package client
|
|
|
|
|
2025-02-04 01:22:31 +01:00
|
|
|
import "github.com/gorilla/websocket"
|
|
|
|
|
2025-01-29 23:20:44 +01:00
|
|
|
type Client struct {
|
2025-02-03 21:17:49 +01:00
|
|
|
ServerAddress string
|
|
|
|
ServerPort int
|
2025-02-04 01:22:31 +01:00
|
|
|
taskId int
|
|
|
|
conn *websocket.Conn
|
2025-01-29 23:20:44 +01:00
|
|
|
}
|