12 lines
222 B
Go
Raw Normal View History

2018-04-16 21:01:34 +00:00
package users
import (
"github.com/aerogo/aero"
"github.com/animenotifier/notify.moe/components"
)
// Map shows a map of all users.
2019-06-01 04:55:49 +00:00
func Map(ctx aero.Context) error {
return ctx.HTML(components.UserMap(ctx.Path()))
2018-04-16 21:01:34 +00:00
}