diff --git a/client/.gitignore b/website/.gitignore similarity index 100% rename from client/.gitignore rename to website/.gitignore diff --git a/client/Cargo.lock b/website/Cargo.lock similarity index 100% rename from client/Cargo.lock rename to website/Cargo.lock diff --git a/client/Cargo.toml b/website/Cargo.toml similarity index 100% rename from client/Cargo.toml rename to website/Cargo.toml diff --git a/client/Rocket.toml b/website/Rocket.toml similarity index 100% rename from client/Rocket.toml rename to website/Rocket.toml diff --git a/client/build.sh b/website/build.sh similarity index 100% rename from client/build.sh rename to website/build.sh diff --git a/client/src/main.rs b/website/src/main.rs similarity index 89% rename from client/src/main.rs rename to website/src/main.rs index ab6fa09..f8ffb31 100644 --- a/client/src/main.rs +++ b/website/src/main.rs @@ -1,6 +1,4 @@ -// Client based web server app -// Built to serve the purpose of being a basic web client's backend -// For now this the backend for the web client +// This client code really just serves as the url router for the main website where we describe what the project is about #![feature(proc_macro_hygiene, decl_macro, plugin)] //#[macro_use] extern crate serde_derive; #[macro_use] extern crate rocket;