fixed an unnecessary import

main
Oliver Stolle 2026-06-02 21:18:05 +00:00
parent 06b7e711e3
commit 743e573990
1 changed files with 1 additions and 2 deletions

View File

@ -2,7 +2,6 @@ package main
import (
"fmt"
"log"
"net/http"
"github.com/google/uuid"
@ -42,5 +41,5 @@ func main() {
http.HandleFunc("/create-cookie", createCookie)
http.HandleFunc("/show-cookie", showCookie)
http.HandleFunc("/delete-cookie", deleteCookie)
log.Fatal(http.ListenAndServe("localhost:8080", nil))
http.ListenAndServe("localhost:8080", nil)
}