1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Add command-line help for Todoist module

This commit is contained in:
Chris Cummer 2018-07-26 14:16:16 -07:00
parent f079e4c4f0
commit e5214ec54b

View File

@ -7,6 +7,7 @@ import (
"github.com/senorprogrammer/wtf/github"
"github.com/senorprogrammer/wtf/textfile"
"github.com/senorprogrammer/wtf/todo"
"github.com/senorprogrammer/wtf/todoist"
"github.com/senorprogrammer/wtf/weatherservices/weather"
)
@ -28,6 +29,8 @@ func helpFor(moduleName string) string {
return textfile.HelpText
case "todo":
return todo.HelpText
case "todoist":
return todoist.HelpText
case "weather":
return weather.HelpText
default: