Compare commits

..

1 Commits

Author SHA1 Message Date
Thomas Klaehn
35db2c1f58 Add camera control
Signed-off-by: Thomas Klaehn <thomas.klaehn@perinet.io>
2025-09-11 08:47:20 +02:00

View File

@@ -36,7 +36,7 @@ func main() {
apiservice_printer.AddHandler() apiservice_printer.AddHandler()
apiservice_relay.AddHandler() apiservice_relay.AddHandler()
port := ":8083" port := ":80"
http.Handle("/", http.FileServer(http.Dir(webui_path))) http.Handle("/", http.FileServer(http.Dir(webui_path)))
logger.Fatal(http.ListenAndServe(port, nil)) logger.Fatal(http.ListenAndServe(port, nil))
} }