changing the server port to flag
authorJosué Rodríguez <jrpc@google.com>
Wed, 2 Aug 2023 04:38:54 +0000 (04:38 +0000)
committerJosué Rodríguez <jrpc@google.com>
Wed, 2 Aug 2023 04:38:54 +0000 (04:38 +0000)
templates/views/index.html
vscpweb.go

index d4a48b4f6520614ce84fa99b20ab291a659de090..ee8248a842102c337d696a948d5974c4f7ad0336 100644 (file)
@@ -8,7 +8,7 @@
     <title>{{ . }}</title>
 </head>
 <body>
-    <h1 class="text-3xl font-bold underline">
+    <h1 class="text-3xl font-bold underline ">
         Hello world! {{ . }}
       </h1>
     
index a304d5ad90ac0062d291b4a52a0f22d93d791432..24be89304d13238d97376c04a11f259d6a4f92b9 100644 (file)
@@ -34,9 +34,9 @@ func main() {
        port := flag.Int("port", 8001, "Port in which the server will be started")
        flag.Parse()
        setPort := strconv.Itoa(*port)
-       setPort = ":"+setPort
+       setPort = ":" + setPort
 
-       http.ListenAndServe(setPort , s.Router)
+       http.ListenAndServe(setPort, s.Router)
 }
 
 type server struct {
@@ -142,8 +142,8 @@ func (s *server) MountHandlers() {
 
 // GenericHandler404 is the universal 404 response of this front end
 func GenericHandler404(w http.ResponseWriter, r *http.Request) {
-       
-w.WriteHeader(404)
+
+       w.WriteHeader(404)
        messages := []string{"route does not exist", "page not found", "resource not found"}
        randomIndex := rand.Intn(len(messages))
        w.Write([]byte(messages[randomIndex]))
@@ -163,9 +163,9 @@ func ExampleHandler(w http.ResponseWriter, r *http.Request) {
 
 func indexHandler(w http.ResponseWriter, r *http.Request) {
        w.WriteHeader(http.StatusOK)
-       passarg := "some passing argument"
+       passarg := "some passing argument done"
        indexTemplate := template.Must(template.ParseFiles("templates/views/index.html"))
-    //check for go partial templates so you can extract blocks you want to use
+       //check for go partial templates so you can extract blocks you want to use
        indexTemplate.Execute(w, passarg)
 
 }