backend: reverse sort

This commit is contained in:
Cadey Ratio 2016-12-14 09:15:16 -08:00
parent 305db738ea
commit 0770bb49cb
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ func init() {
panic(err)
}
sort.Sort(posts)
sort.Sort(sort.Reverse(posts))
}
func main() {