summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2022-05-16 18:59:43 +0200
committerxengineering <me@xengineering.eu>2022-05-16 18:59:43 +0200
commit3b4f49a63fbab23ab36bccdfc82b86e5223f2495 (patch)
tree7fddafaee99654865402290a98931a138a5e49e6 /main.go
parent96e66b41169a005613fe45f47bb7d1d92950a10f (diff)
downloadwebiot-3b4f49a63fbab23ab36bccdfc82b86e5223f2495.tar
webiot-3b4f49a63fbab23ab36bccdfc82b86e5223f2495.tar.zst
webiot-3b4f49a63fbab23ab36bccdfc82b86e5223f2495.zip
Implement CSS installation
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 76e9f85..35bacc1 100644
--- a/main.go
+++ b/main.go
@@ -87,7 +87,7 @@ func index(devices DevicesConfig, appdata string) func(http.ResponseWriter, *htt
func css(appdata string) func(http.ResponseWriter, *http.Request) {
// read CSS file
- path := filepath.Join(appdata, "libweb/libweb.css")
+ path := filepath.Join(appdata, "webiot.css")
css := string(mustRead(path))
return func(w http.ResponseWriter, r *http.Request) {