From b558b02711fd80823fe720e76017ce558710f7e3 Mon Sep 17 00:00:00 2001 From: Charles Le Maux Date: Wed, 11 Sep 2024 04:15:09 +0200 Subject: [PATCH] [+] FetchDirContent --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 4640025..ad45b9c 100644 --- a/app.py +++ b/app.py @@ -90,9 +90,9 @@ route_handlers = { 'SetSubdomain': generic_executor.set_subdomain, 'FetchServers': generic_executor.fetch_servers, 'FetchLogs': generic_executor.fetch_logs, - 'FetchFilenames': generic_executor.fetch_players_status, 'FetchHistory': generic_executor.fetch_history, 'FetchPlayersStatus': generic_executor.fetch_players_status, + 'FetchDirContent': generic_executor.fetch_dir_content, 'AccountCreate': generic_executor.account_create, 'AccountDelete': generic_executor.account_delete, 'ServerCreate': generic_executor.server_create,