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 }