ChronoTomato/pkg/models/client.go

12 lines
329 B
Go
Raw Permalink Normal View History

package models
import "github.com/gorilla/websocket"
2024-10-30 10:03:18 +00:00
// Represents a GoTomato client
type GoTomatoClient struct {
Server string // The GoTomato server
Password string // Pomodoro password
Conn *websocket.Conn // The websocket connection of the client
LastErr error // Last client error
}