added correct sorting of quotes in the list; set up a testing environment

This commit is contained in:
odweta
2026-04-02 19:58:41 +02:00
parent c9d39a7193
commit 51ce826de6
3 changed files with 11 additions and 5 deletions
+2
View File
@@ -3,6 +3,7 @@ package main
import (
"net/http"
"os"
"fmt"
"github.com/go-chi/chi/v5"
)
@@ -25,5 +26,6 @@ func main() {
port = "8080"
}
fmt.Println("started and listening on localhost:" + port)
http.ListenAndServe(":"+port, r)
}