Sebastian Mark
c59f737eb7
- move server logic to cmd/server/main.go
- create packages for websocket, pomodoro and broadcast handling
- define models for messages
- remove old GoTomato.go file
- update README
🤖
17 lines
337 B
Go
17 lines
337 B
Go
package main
|
|
|
|
import (
|
|
"git.smsvc.net/pomodoro/GoTomato/internal/websocket"
|
|
"log"
|
|
"net/http"
|
|
)
|
|
|
|
func main() {
|
|
http.HandleFunc("/ws", websocket.HandleConnections)
|
|
|
|
log.Println("Pomodoro WebSocket server started on :8080")
|
|
err := http.ListenAndServe(":8080", nil)
|
|
if err != nil {
|
|
log.Fatalf("Error starting server: %v", err)
|
|
}
|
|
}
|