WIP: panel functions added to the api.

This commit is contained in:
Jesse Malotaux 2025-04-05 23:19:26 +02:00
parent 2f391bce4e
commit 022b11c81f
4 changed files with 111 additions and 0 deletions

View file

@ -85,6 +85,10 @@ func ApiPost(w http.ResponseWriter, r *http.Request) {
RemoveLink("", w, r)
case "/device/handshake":
Handshake(w, r)
case "/panel/list":
PanelList(w, r)
case "/panel/get":
GetPanel(w, r)
}
}