1
0
mirror of https://github.com/Rudi9719/kbtui.git synced 2026-03-22 02:57:23 +00:00

Remove unused import

This commit is contained in:
Gregory Rudolph
2019-12-06 11:29:47 -05:00
parent db08278780
commit 9a71d50ab7

19
cmdTags.go Normal file
View File

@ -0,0 +1,19 @@
// +ignore
// +build allcommands tagscmd
package main
func init() {
command := Command{
Cmd: []string{"tags", "map"},
Description: "$- Create map of users following users, to populate $TAGS",
Help: "",
Exec: cmdTags,
}
RegisterCommand(command)
}
func cmdTags(cmd []string) {
go generateFollowersList()
}