Volodymyr Tkach 2 years ago
parent
commit
885acbc9df
1 changed files with 6 additions and 2 deletions
  1. 6 2
      main.go

+ 6 - 2
main.go

@@ -42,7 +42,11 @@ func main() {
 	})
 
 	// Delete expired session files
-	session.Clean("./tmp")
+	if err := session.Clean("./tmp"); err != nil {
+		fmt.Printf("%s\n", err.Error())
+	}
 
-	http.ListenAndServe(":8080", nil)
+	if err := http.ListenAndServe(":8080", nil); err != nil {
+		fmt.Printf("%s\n", err.Error())
+	}
 }