9 lines
234 B
Go
9 lines
234 B
Go
package models
|
|
|
|
import "github.com/gorilla/websocket"
|
|
|
|
// Represents a websocket client
|
|
type GoTomatoClient struct {
|
|
Conn *websocket.Conn // The websocket connection of the client
|
|
Password string // Pomodoro password
|
|
}
|