wip: renaming

This commit is contained in:
Peter Harpending
2025-11-19 10:57:23 -08:00
parent e12466d5f2
commit ff257ae976
7 changed files with 29 additions and 22 deletions
+3 -3
View File
@@ -36,8 +36,8 @@ start_link() ->
init([]) ->
RestartStrategy = {one_for_one, 1, 60},
Clients = {fd_clients,
{fd_clients, start_link, []},
Httpd = {fd_http,
{fd_http, start_link, []},
permanent,
5000,
supervisor,
@@ -60,5 +60,5 @@ init([]) ->
5000,
worker,
[fd_cache]},
Children = [Clients, Chat, FileCache, Cache],
Children = [Httpd, Chat, FileCache, Cache],
{ok, {RestartStrategy, Children}}.