add followers command

pull/19/head
Yasuhiro Matsumoto 2017-04-16 22:27:54 +09:00
parent 11e2501455
commit dfbfecd326
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
package main
import (
"fmt"
"github.com/mattn/go-mastodon"
"github.com/urfave/cli"
)
func cmdFollowers(c *cli.Context) error {
client := c.App.Metadata["client"].(*mastodon.Client)
account, err := client.GetAccountCurrentUser()
if err != nil {
return err
}
followers, err := client.GetAccountFollowers(account.ID)
if err != nil {
return err
}
for _, follower := range followers {
fmt.Printf("%v,%v\n", follower.ID, follower.Username)
}
return nil
}