Browse Source

Remove unused import

master
Gregory Rudolph 4 years ago
parent
commit
9a71d50ab7
  1. 19
      cmdTags.go

19
cmdTags.go

@ -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…
Cancel
Save