mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 15:16:14 +00:00
The client ID is not useful to normal clients anymore, so stop telling everyone what their ID is.
13 lines
456 B
Plaintext
13 lines
456 B
Plaintext
endpoint LaunchServer = 101
|
|
{
|
|
Greet() => ()
|
|
OpenURL(URL url, String handler_name) => (bool response)
|
|
GetHandlersForURL(URL url) => (Vector<String> handlers)
|
|
GetHandlersWithDetailsForURL(URL url) => (Vector<String> handlers_details)
|
|
|
|
AddAllowedURL(URL url) => ()
|
|
AddAllowedHandlerWithAnyURL(String handler_name) => ()
|
|
AddAllowedHandlerWithOnlySpecificURLs(String handler_name, Vector<URL> urls) => ()
|
|
SealAllowlist() => ()
|
|
}
|