Compare commits
No commits in common. "d2e34e84f87f2dfd7e88836a4e30795a6bb3a88e" and "45c527cc7972246a6339c0d2ffb909a57a89e111" have entirely different histories.
d2e34e84f8
...
45c527cc79
3 changed files with 11 additions and 11 deletions
|
@ -6,8 +6,13 @@ import (
|
|||
"git.smsvc.net/pomodoro/GoTomato/pkg/models"
|
||||
"github.com/gorilla/websocket"
|
||||
"log"
|
||||
"sync"
|
||||
)
|
||||
|
||||
// Clients is a map of connected WebSocket clients, where each client is represented by the Client struct
|
||||
var Clients = make(map[*websocket.Conn]*models.Client)
|
||||
var mu sync.Mutex // Mutex to protect access to the Clients map
|
||||
|
||||
// handleClientCommands listens for commands from WebSocket clients and dispatches to the timer.
|
||||
func handleClientCommands(ws *websocket.Conn) {
|
||||
for {
|
||||
|
|
|
@ -5,13 +5,8 @@ import (
|
|||
"github.com/gorilla/websocket"
|
||||
"log"
|
||||
"net/http"
|
||||
"sync"
|
||||
)
|
||||
|
||||
// Clients is a map of connected WebSocket clients, where each client is represented by the Client struct
|
||||
var Clients = make(map[*websocket.Conn]*models.Client)
|
||||
var mu sync.Mutex // Mutex to protect access to the Clients map
|
||||
|
||||
// Upgrader to upgrade HTTP requests to WebSocket connections
|
||||
var upgrader = websocket.Upgrader{
|
||||
CheckOrigin: func(r *http.Request) bool { return true },
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
package models
|
||||
|
||||
type GoTomatoTimerConfig struct {
|
||||
Work int `json:"work"` // Length of work sessions in seconds
|
||||
ShortBreak int `json:"shortBreak"` // Length of short break in seconds
|
||||
LongBreak int `json:"longBreak"` // Length if ling break in seconds
|
||||
Sessions int `json:"sessions"` // Number of total sessions
|
||||
Work int `json:"work"`
|
||||
ShortBreak int `json:"shortBreak"`
|
||||
LongBreak int `json:"longBreak"`
|
||||
Sessions int `json:"sessions"`
|
||||
}
|
||||
|
||||
type GoTomatoServerConfig struct {
|
||||
ListenAddress string `json:"listenAddress"` // Server listen address
|
||||
ListenPort int `json:"listenPort"` // Server listen port
|
||||
ListenAddress string `json:"listenAddress"`
|
||||
ListenPort int `json:"listenPort"`
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue