Skip to main content

rustic_server/
handlers.rs

1// web server response handler modules
2pub(crate) mod file_config;
3pub(crate) mod file_exchange;
4pub(crate) mod file_length;
5pub(crate) mod files_list;
6pub(crate) mod health;
7pub(crate) mod repository;
8
9// Support modules
10mod access_check;
11pub(crate) mod file_helpers;