mirror of https://github.com/Rudi9719/kbtui.git
Gregory Rudolph
5 years ago
1 changed files with 19 additions and 0 deletions
@ -0,0 +1,19 @@
@@ -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() |
||||
} |
Loading…
Reference in new issue