From 9a71d50ab786895907f6e44e604be5472519f9c5 Mon Sep 17 00:00:00 2001 From: Gregory Rudolph Date: Fri, 6 Dec 2019 11:29:47 -0500 Subject: [PATCH] Remove unused import --- cmdTags.go | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 cmdTags.go 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() +}