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-27 09:41:31 +00:00
|
|
|
type Config struct {
|
2024-10-28 06:56:37 +00:00
|
|
|
URL string `yaml:"url"`
|
|
|
|
Password string `yaml:"password"`
|
|
|
|
PomodoroConfig GoTomato.PomodoroConfig `yaml:"config"`
|
2024-10-23 15:36:30 +00:00
|
|
|
}
|