Browse Source

Code style

Volodymyr Tkach 2 years ago
parent
commit
aa43f00fbc
1 changed files with 8 additions and 1 deletions
  1. 8 1
      session/session.go

+ 8 - 1
session/session.go

@@ -27,7 +27,14 @@ type Session struct {
 }
 
 func New(w http.ResponseWriter, r *http.Request, tmpdir string) *Session {
-	sess := Session{w: w, r: r, tmpdir: tmpdir, varlist: &vars{}, changed: false, hash: ""}
+	sess := Session{
+		w:       w,
+		r:       r,
+		tmpdir:  tmpdir,
+		varlist: &vars{},
+		changed: false,
+		hash:    "",
+	}
 
 	cookie, err := r.Cookie("session")
 	if err == nil && len(cookie.Value) == 40 {