renaming/deleting

:wq
This commit is contained in:
Peter Harpending
2025-12-12 23:21:00 -08:00
parent ff257ae976
commit cbfc496057
8 changed files with 48 additions and 561 deletions
+4 -16
View File
@@ -36,29 +36,17 @@ start_link() ->
init([]) ->
RestartStrategy = {one_for_one, 1, 60},
Httpd = {fd_http,
{fd_http, start_link, []},
Httpd = {fd_httpd,
{fd_httpd, start_link, []},
permanent,
5000,
supervisor,
[fd_clients]},
Chat = {fd_chat,
{fd_chat, start_link, []},
permanent,
5000,
worker,
[fd_chat]},
FileCache = {fd_sfc,
{fd_sfc, start_link, []},
permanent,
5000,
worker,
[fd_sfc]},
[fd_httpd]},
Cache = {fd_cache,
{fd_cache, start_link, []},
permanent,
5000,
worker,
[fd_cache]},
Children = [Httpd, Chat, FileCache, Cache],
Children = [Httpd, Cache],
{ok, {RestartStrategy, Children}}.