From daa480053400a46cb5efa12993fa8ee48bd57d74 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Tue, 29 Jul 2025 10:13:18 +0200 Subject: [PATCH] fix: remove useless code --- main.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/main.go b/main.go index a08940d..55e9229 100644 --- a/main.go +++ b/main.go @@ -4,7 +4,6 @@ import ( "html/template" "log" "net/http" - "os" "github.com/yassinebenaid/godump" "gitnet.fr/deblan/go-form/example" @@ -170,8 +169,6 @@ func main() { "Form": f, "Dump": template.HTML(dump.Sprint(data)), }) - - os.Stdout }) log.Fatal(http.ListenAndServe(":1122", nil))