1
0
mirror of https://github.com/Rudi9719/kbtui.git synced 2026-06-01 21:27:13 +00:00
Files
kbtui/cmdTags.go
2019-12-06 11:29:47 -05:00

20 lines
342 B
Go

// +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()
}