ChronoTomato/pkg/models/configfile.go

12 lines
297 B
Go
Raw Normal View History

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"`
}