sfcs/client/types.go

11 lines
169 B
Go
Raw Normal View History

2025-01-29 23:20:44 +01:00
package client
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
taskId int
conn *websocket.Conn
2025-01-29 23:20:44 +01:00
}