Fix Editor Command

This commit is contained in:
2022-01-21 16:49:05 -06:00
parent 45d13e7052
commit b0f5e928d9
2 changed files with 30 additions and 2 deletions

View File

@@ -27,6 +27,10 @@ func (p *Program) Initialize() error {
return nil
}
func (p *Program) GetTimerFilePath() string {
return p.timerPath
}
func (p *Program) LoadTimerList() error {
var err error
var tl timertxt.TimerList
@@ -43,6 +47,10 @@ func (p *Program) WriteTimerList() error {
return p.TimerList.WriteToFilename(p.timerPath)
}
func (p *Program) GetDoneFilePath() string {
return p.donePath
}
func (p *Program) LoadDoneList() error {
var err error
var tl timertxt.TimerList