ChronoTomato/pkg/models/client.go

9 lines
233 B
Go

package models
import "github.com/gorilla/websocket"
// Represents a GoTomato client
type GoTomatoClient struct {
Conn *websocket.Conn // The websocket connection of the client
Password string // Pomodoro password
}