Explorar o código

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

Torkel Ödegaard %!s(int64=10) %!d(string=hai) anos
pai
achega
37ad58c69e
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      pkg/api/api.go

+ 1 - 1
pkg/api/api.go

@@ -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)