fix(gofmt): somehow api.go did not pass gofmt test

This commit is contained in:
Torkel Ödegaard 2015-09-14 12:30:30 +02:00
parent de753bf330
commit 37ad58c69e

View File

@ -17,7 +17,7 @@ func Register(r *macaron.Macaron) {
bind := binding.Bind
// not logged in views
r.Get("/", reqSignedIn, Index)
r.Get("/", reqSignedIn, Index)
r.Get("/logout", Logout)
r.Post("/login", bind(dtos.LoginCommand{}), wrap(LoginPost))
r.Get("/login/:name", OAuthLogin)