ChronoTomato/pkg/models/configfile.go

11 lines
377 B
Go
Raw Permalink Normal View History

package models
import GoTomato "git.smsvc.net/pomodoro/GoTomato/pkg/models"
2024-10-30 10:03:18 +00:00
// Represents a ChronoTomato Config
type Config struct {
2024-10-30 10:03:18 +00:00
URL string `yaml:"url"` // URL to GoTomato server
Password string `yaml:"password"` // Pomodoro Password
PomodoroConfig GoTomato.PomodoroConfig `yaml:"config"` // Pomodoro Config
}