Simple HTTP Server

This commit is contained in:
GuilhermeWerner
2021-07-04 10:51:06 -03:00
parent b8b36dd68d
commit c342c61b1a
4 changed files with 72 additions and 1 deletions

View File

@ -2,4 +2,6 @@
#![allow(non_snake_case)]
fn main() {}
fn main() {
Http::Main();
}