add seperate file for http_server functionality

This commit is contained in:
Patryk Hegenberg 2024-04-11 22:38:34 +02:00
parent 9dbf18d307
commit 47c29d782a
2 changed files with 2 additions and 1 deletions

0
src/http_server.rs Normal file
View file

View file

@ -1,5 +1,6 @@
mod args;
pub mod args;
pub mod http_client;
pub mod http_server;
pub mod receiver;
pub mod sender;