mirror of
https://github.com/RGBCube/serenity
synced 2025-07-06 13:37:36 +00:00
11 lines
455 B
Text
11 lines
455 B
Text
endpoint LaunchServer
|
|
{
|
|
open_url(URL url, String handler_name) => (bool response)
|
|
get_handlers_for_url(URL url) => (Vector<String> handlers)
|
|
get_handlers_with_details_for_url(URL url) => (Vector<String> handlers_details)
|
|
|
|
add_allowed_url(URL url) => ()
|
|
add_allowed_handler_with_any_url(String handler_name) => ()
|
|
add_allowed_handler_with_only_specific_urls(String handler_name, Vector<URL> urls) => ()
|
|
seal_allowlist() => ()
|
|
}
|