Removed junk

This commit is contained in:
Daniel Legt 2024-01-20 02:14:20 +02:00
parent 5cc58c7d53
commit 8f8da162e9
1 changed files with 1 additions and 3 deletions

View File

@ -1,7 +1,6 @@
package web package web
import ( import (
"fmt"
"net/http" "net/http"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
@ -21,8 +20,7 @@ func setupApi(r *gin.Engine) {
if ctx.Request.URL.Query().Get("temp") != "" { if ctx.Request.URL.Query().Get("temp") != "" {
for _, d := range disks { for _, d := range disks {
temp := d.GetTemperature(true) d.GetTemperature(true)
fmt.Printf("Disk Temp: %v", temp)
} }
} }