Sebastian Mark
bbc9977f1c
- remove `shared` package and shared.Message - rename `notifications` package to `frontend` - introduce a channel send the received ServerMessages to the frontend handler(s) - move keyhandler to goroutine - simplify password handling in Start function - update import names when importing from GoTomoto
11 lines
297 B
Go
11 lines
297 B
Go
package models
|
|
|
|
import (
|
|
GoTomato "git.smsvc.net/pomodoro/GoTomato/pkg/models"
|
|
)
|
|
|
|
type Config struct {
|
|
URL string `yaml:"url"`
|
|
Password string `yaml:"password"`
|
|
PomodoroConfig GoTomato.GoTomatoPomodoroConfig `yaml:"config"`
|
|
}
|