16 lines
258 B
Go
Raw Normal View History

2018-04-22 17:43:20 +02:00
package characters
import (
"github.com/aerogo/aero"
2019-06-03 18:32:43 +09:00
"github.com/animenotifier/notify.moe/arn"
2018-04-22 17:43:20 +02:00
)
// Best characters.
2019-06-01 13:55:49 +09:00
func Best(ctx aero.Context) error {
2018-04-22 17:43:20 +02:00
characters := fetchAll()
2018-10-27 11:01:21 +09:00
arn.SortCharactersByLikes(characters)
2018-04-22 17:43:20 +02:00
return render(ctx, characters)
}