10 lines
211 B
Go
Raw Normal View History

2017-06-27 10:39:41 +00:00
package music
import "github.com/aerogo/aero"
2017-06-27 11:06:19 +00:00
import "github.com/animenotifier/notify.moe/components"
2017-06-27 10:39:41 +00:00
// Get renders the music page.
func Get(ctx *aero.Context) string {
2017-06-27 11:06:19 +00:00
return ctx.HTML(components.Music())
2017-06-27 10:39:41 +00:00
}