19 lines
351 B
Go
19 lines
351 B
Go
package soundtracks
|
|
|
|
import (
|
|
"github.com/aerogo/aero"
|
|
"github.com/animenotifier/notify.moe/arn"
|
|
)
|
|
|
|
// Best renders the best soundtracks.
|
|
func Best(ctx aero.Context) error {
|
|
// Fetch all eligible tracks
|
|
tracks := fetchAll()
|
|
|
|
// Sort the tracks by number of likes
|
|
arn.SortSoundTracksPopularFirst(tracks)
|
|
|
|
// Render
|
|
return render(ctx, tracks)
|
|
}
|