Sebastian Mark
b7a79acdb0
- refactor server package - update package name - rename `StartServer()` to `Start()` - (re)add `GoTomato.go` to call `server.Start()` - update README
17 lines
340 B
Go
17 lines
340 B
Go
package server
|
|
|
|
import (
|
|
"git.smsvc.net/pomodoro/GoTomato/internal/websocket"
|
|
"log"
|
|
"net/http"
|
|
)
|
|
|
|
func Start() {
|
|
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)
|
|
}
|
|
}
|