diff --git a/cmdTags.go b/cmdTags.go new file mode 100644 index 0000000..095df0c --- /dev/null +++ b/cmdTags.go @@ -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() +}