mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 20:30:23 +00:00
Fix the list of registered processes in the examples
This commit is contained in:
parent
bbe42d9bc5
commit
1a4e7a8618
17 changed files with 17 additions and 17 deletions
|
@ -4,7 +4,7 @@
|
|||
{description, "Cowboy Chunked Hello World example."},
|
||||
{vsn, "1"},
|
||||
{modules, []},
|
||||
{registered, []},
|
||||
{registered, [chunked_hello_world_sup]},
|
||||
{applications, [
|
||||
kernel,
|
||||
stdlib,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{description, "Cowboy Compress Response example."},
|
||||
{vsn, "1"},
|
||||
{modules, []},
|
||||
{registered, []},
|
||||
{registered, [compress_response_sup]},
|
||||
{applications, [
|
||||
kernel,
|
||||
stdlib,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{description, "Cowboy Cookie example."},
|
||||
{vsn, "1"},
|
||||
{modules, []},
|
||||
{registered, []},
|
||||
{registered, [cookie_sup]},
|
||||
{applications, [
|
||||
kernel,
|
||||
stdlib,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{description, "Cowboy GET echo example."},
|
||||
{vsn, "1"},
|
||||
{modules, []},
|
||||
{registered, []},
|
||||
{registered, [echo_get_sup]},
|
||||
{applications, [
|
||||
kernel,
|
||||
stdlib,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{description, "Cowboy POST echo example."},
|
||||
{vsn, "1"},
|
||||
{modules, []},
|
||||
{registered, []},
|
||||
{registered, [echo_post_sup]},
|
||||
{applications, [
|
||||
kernel,
|
||||
stdlib,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{description, "Cowboy error handler example."},
|
||||
{vsn, "1"},
|
||||
{modules, []},
|
||||
{registered, []},
|
||||
{registered, [error_hook_sup]},
|
||||
{applications, [
|
||||
kernel,
|
||||
stdlib,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{description, "Cowboy EventSource example."},
|
||||
{vsn, "1"},
|
||||
{modules, []},
|
||||
{registered, []},
|
||||
{registered, [eventsource_sup]},
|
||||
{applications, [
|
||||
kernel,
|
||||
stdlib,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{description, "Cowboy Hello World example."},
|
||||
{vsn, "1"},
|
||||
{modules, []},
|
||||
{registered, []},
|
||||
{registered, [hello_world_sup]},
|
||||
{applications, [
|
||||
kernel,
|
||||
stdlib,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{description, "Cowboy static file handler example with middleware component."},
|
||||
{vsn, "1"},
|
||||
{modules, []},
|
||||
{registered, []},
|
||||
{registered, [markdown_middleware_sup]},
|
||||
{applications, [
|
||||
kernel,
|
||||
stdlib,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{description, "Cowboy Basic HTTP Authorization example."},
|
||||
{vsn, "1"},
|
||||
{modules, []},
|
||||
{registered, []},
|
||||
{registered, [rest_basic_auth_sup]},
|
||||
{applications, [
|
||||
kernel,
|
||||
stdlib,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{description, "Cowboy REST Hello World example."},
|
||||
{vsn, "1"},
|
||||
{modules, []},
|
||||
{registered, []},
|
||||
{registered, [rest_hello_world_sup]},
|
||||
{applications, [
|
||||
kernel,
|
||||
stdlib,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{description, "Cowboy REST Pastebin example inspired by sprunge."},
|
||||
{vsn, "1"},
|
||||
{modules, []},
|
||||
{registered, []},
|
||||
{registered, [rest_pastebin_sup]},
|
||||
{applications, [
|
||||
kernel,
|
||||
stdlib,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{description, "Cowboy REST with streaming."},
|
||||
{vsn, "1"},
|
||||
{modules, []},
|
||||
{registered, []},
|
||||
{registered, [rest_stream_response_sup]},
|
||||
{applications, [
|
||||
kernel,
|
||||
stdlib,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{description, "Cowboy Hello World example with SSL."},
|
||||
{vsn, "1"},
|
||||
{modules, []},
|
||||
{registered, []},
|
||||
{registered, [ssl_hello_world_sup]},
|
||||
{applications, [
|
||||
kernel,
|
||||
stdlib,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{description, "Cowboy static file handler example."},
|
||||
{vsn, "1"},
|
||||
{modules, []},
|
||||
{registered, []},
|
||||
{registered, [static_world_sup]},
|
||||
{applications, [
|
||||
kernel,
|
||||
stdlib,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{description, "Cowboy static file handler with directory indexes."},
|
||||
{vsn, "1"},
|
||||
{modules, []},
|
||||
{registered, []},
|
||||
{registered, [web_server_sup]},
|
||||
{applications, [
|
||||
kernel,
|
||||
stdlib,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{description, "Cowboy websocket example."},
|
||||
{vsn, "1"},
|
||||
{modules, []},
|
||||
{registered, []},
|
||||
{registered, [websocket_sup]},
|
||||
{applications, [
|
||||
kernel,
|
||||
stdlib,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue