Sebastian Mark
b7d03aa1d8
- change "none" to an empty string for the mode field
- update README to reflect the new mode representation
- ensure consistency across session end/reset and welcome messages
🤖
14 lines
229 B
Go
14 lines
229 B
Go
package shared
|
|
|
|
import (
|
|
"git.smsvc.net/pomodoro/GoTomato/pkg/models"
|
|
)
|
|
|
|
var Message = models.ServerMessage{
|
|
Mode: "",
|
|
Session: 0,
|
|
TotalSession: 0,
|
|
TimeLeft: 0,
|
|
Ongoing: false,
|
|
Paused: false,
|
|
}
|