ChronoTomato/pkg/models/configfile.go
Sebastian Mark 0f8fde3143 fix: update GoTomato model field names
adjust field names due to breaking changes in GoTomato v0.0.4
2024-10-28 07:56:37 +01:00

9 lines
268 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.PomodoroConfig `yaml:"config"`
}