diff options
author | xengineering <me@xengineering.eu> | 2024-03-24 21:10:04 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-03-24 21:13:01 +0100 |
commit | aa061a390d59157c8d5280e364a5a12f64c0c7ce (patch) | |
tree | 05b11c7271ed79d6da3bc97c62cbcab7ade14753 | |
parent | 820b15f71a4ac4aeb0c31dc6b929f2d022cff3b8 (diff) | |
download | webiot-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.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) } |