happy linting

This commit is contained in:
Marvin Steadfast 2021-05-03 14:54:28 +02:00
parent 35fe4a04df
commit 8f33ce3a00
3 changed files with 8 additions and 13 deletions

View File

@ -1,4 +1,4 @@
//nolint:gochecknoglobals //nolint:gochecknoglobals,golint,stylecheck
package prepare package prepare
import "embed" import "embed"

View File

@ -1,4 +1,4 @@
//nolint:gochecknoglobals //nolint:gochecknoglobals,golint,stylecheck
package web package web
import "embed" import "embed"

View File

@ -4,7 +4,6 @@ import (
"fmt" "fmt"
"html/template" "html/template"
"net/http" "net/http"
"time"
"github.com/prometheus/client_golang/prometheus/promhttp" "github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
@ -26,7 +25,12 @@ func root(w http.ResponseWriter, r *http.Request) {
return return
} }
t.Execute(w, struct{}{}) if err := t.Execute(w, struct{}{}); err != nil {
logger.Error().Err(err).Msg("could not execute template")
http.Error(w, "could not execute template", http.StatusInternalServerError)
return
}
} }
func Run(command *cobra.Command, args []string) { func Run(command *cobra.Command, args []string) {
@ -44,15 +48,6 @@ func Run(command *cobra.Command, args []string) {
) )
http.Handle("/metrics", promhttp.Handler()) http.Handle("/metrics", promhttp.Handler())
go func() {
ticker := time.NewTicker(5 * time.Second)
for {
<-ticker.C
log.Debug().Msg("ping")
}
}()
// Serving this thing. // Serving this thing.
log.Info().Msgf("serving on %s...", l) log.Info().Msgf("serving on %s...", l)