mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 22:25:07 +00:00

The client ID is not useful to normal clients anymore, so stop telling everyone what their ID is.
12 lines
456 B
Text
12 lines
456 B
Text
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() => ()
|
|
}
|