summaryrefslogtreecommitdiff
path: root/handler.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-04-13 18:52:12 +0200
committerxengineering <me@xengineering.eu>2023-04-13 18:52:12 +0200
commit08375ab50b3bf0231b432d855eca014842985c60 (patch)
tree801e6d02b34e7b4e30dce712c2174d477e02b210 /handler.go
parent3f40bc37a1095259a42825bac08f939bc15e8a13 (diff)
downloadceres-08375ab50b3bf0231b432d855eca014842985c60.tar
ceres-08375ab50b3bf0231b432d855eca014842985c60.tar.zst
ceres-08375ab50b3bf0231b432d855eca014842985c60.zip
Apply go fmt
Diffstat (limited to 'handler.go')
-rw-r--r--handler.go16
1 files changed, 8 insertions, 8 deletions
diff --git a/handler.go b/handler.go
index bbc2dc3..5acb5c6 100644
--- a/handler.go
+++ b/handler.go
@@ -1,10 +1,10 @@
package main
import (
- "os"
"fmt"
"io/ioutil"
"net/http"
+ "os"
"path/filepath"
"regexp"
"strconv"
@@ -15,10 +15,10 @@ const (
)
type Recipe struct {
- Id string
- Title string
- Text string
- Html string
+ Id string
+ Title string
+ Text string
+ Html string
}
func indexGet(w http.ResponseWriter, r *http.Request) {
@@ -31,7 +31,7 @@ func indexGet(w http.ResponseWriter, r *http.Request) {
recipes := make([]Recipe, 0)
- for _,v := range entries {
+ for _, v := range entries {
if v.IsDir() == false {
continue
}
@@ -156,7 +156,7 @@ func recipeConfirmDeletionPost(w http.ResponseWriter, r *http.Request) {
err := os.RemoveAll(recipedir)
if err != nil {
http.Error(w, "Could not delete recipe.", 500)
- return;
+ return
}
http.Redirect(w, r, "/index.html", 303)
@@ -172,7 +172,7 @@ func addRecipesGet(w http.ResponseWriter, r *http.Request) {
var biggest int = -1
- for _,v := range entries {
+ for _, v := range entries {
if v.IsDir() == false {
continue
}