forked from WEB-IB-SS26/development-ib
fixed an unnecessary import
parent
06b7e711e3
commit
743e573990
|
|
@ -2,7 +2,6 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
"github.com/google/uuid"
|
"github.com/google/uuid"
|
||||||
|
|
@ -42,5 +41,5 @@ func main() {
|
||||||
http.HandleFunc("/create-cookie", createCookie)
|
http.HandleFunc("/create-cookie", createCookie)
|
||||||
http.HandleFunc("/show-cookie", showCookie)
|
http.HandleFunc("/show-cookie", showCookie)
|
||||||
http.HandleFunc("/delete-cookie", deleteCookie)
|
http.HandleFunc("/delete-cookie", deleteCookie)
|
||||||
log.Fatal(http.ListenAndServe("localhost:8080", nil))
|
http.ListenAndServe("localhost:8080", nil)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue