mirror of
https://github.com/Rudi9719/kbtui.git
synced 2026-06-01 21:27:13 +00:00
20 lines
342 B
Go
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()
|
|
}
|