2024-10-23 15:36:30 +00:00
|
|
|
package models
|
|
|
|
|
2024-10-27 20:34:53 +00:00
|
|
|
import GoTomato "git.smsvc.net/pomodoro/GoTomato/pkg/models"
|
2024-10-23 15:36:30 +00:00
|
|
|
|
2024-10-30 10:03:18 +00:00
|
|
|
// Represents a ChronoTomato Config
|
2024-10-27 09:41:31 +00:00
|
|
|
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
|
2024-10-23 15:36:30 +00:00
|
|
|
}
|