mirror of
https://github.com/Rudi9719/kbtui.git
synced 2026-03-22 11:07:22 +00:00
Remove unused import
This commit is contained in:
19
cmdTags.go
Normal file
19
cmdTags.go
Normal file
@ -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()
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user