19 lines
345 B
Go
Raw Normal View History

2017-10-02 06:29:58 +02:00
package soundtracks
2017-06-27 12:39:41 +02:00
2017-06-27 14:01:32 +02:00
import (
"github.com/aerogo/aero"
2019-06-03 18:32:43 +09:00
"github.com/animenotifier/notify.moe/arn"
2017-06-27 14:01:32 +02:00
)
2017-06-27 12:39:41 +02:00
2018-03-13 22:38:26 +01:00
// Latest renders the latest soundtracks.
2019-06-01 13:55:49 +09:00
func Latest(ctx aero.Context) error {
2018-03-13 22:38:26 +01:00
// Fetch all eligible tracks
tracks := fetchAll()
2017-10-16 11:53:47 +02:00
2018-03-13 22:38:26 +01:00
// Sort the tracks by date
arn.SortSoundTracksLatestFirst(tracks)
2017-10-16 12:56:46 +02:00
// Render
return render(ctx, tracks)
2017-10-16 11:53:47 +02:00
}