summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-03-24 21:10:04 +0100
committerxengineering <me@xengineering.eu>2024-03-24 21:13:01 +0100
commitaa061a390d59157c8d5280e364a5a12f64c0c7ce (patch)
tree05b11c7271ed79d6da3bc97c62cbcab7ade14753
parent820b15f71a4ac4aeb0c31dc6b929f2d022cff3b8 (diff)
downloadwebiot-aa061a390d59157c8d5280e364a5a12f64c0c7ce.tar
webiot-aa061a390d59157c8d5280e364a5a12f64c0c7ce.tar.zst
webiot-aa061a390d59157c8d5280e364a5a12f64c0c7ce.zip
Replace io/ioutil by os package
io/ioutil should not be used since Go 1.16.
-rw-r--r--main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.go b/main.go
index adbdf34..f3ec517 100644
--- a/main.go
+++ b/main.go
@@ -6,10 +6,10 @@ import (
"embed"
"flag"
"fmt"
- "io/ioutil"
"log"
"net/http"
"net/netip"
+ "os"
"text/template"
)
@@ -88,7 +88,7 @@ func index(devices DevicesConfig) func(http.ResponseWriter, *http.Request) {
// mustRead() reads a file and panics if this is not possible.
func mustRead(path string) []byte {
- data, err := ioutil.ReadFile(path)
+ data, err := os.ReadFile(path)
if err != nil {
log.Fatalf("Could not read '%s'!", path)
}