Revert timeline's sort-order with no-options

pull/4/head
HAYAMA_Kaoru 2017-04-14 12:09:21 +09:00
parent f4a4a21710
commit a331554685
1 changed files with 2 additions and 1 deletions

View File

@ -197,7 +197,8 @@ func main() {
if err != nil {
log.Fatal(err)
}
for _, t := range timeline {
for i := len(timeline) - 1; i >= 0; i-- {
t := timeline[i]
color.Set(color.FgHiRed)
fmt.Println(t.Account.Username)
color.Set(color.Reset)