Implement basic binding

This commit is contained in:
Lea Anthony
2023-02-26 20:49:29 +11:00
parent 33855ff01d
commit 00c458f948
17 changed files with 582 additions and 257 deletions
+2
View File
@@ -71,6 +71,8 @@ func (m *MessageProcessor) HandleRuntimeCall(rw http.ResponseWriter, r *http.Req
m.processContextMenuMethod(method, rw, r, targetWindow, params)
case "screens":
m.processScreensMethod(method, rw, r, targetWindow, params)
case "call":
m.processCallMethod(method, rw, r, targetWindow, params)
default:
m.httpError(rw, "Unknown runtime call: %s", object)
}