From ca6401afabff7d826741f568b7d511c45df9a015 Mon Sep 17 00:00:00 2001 From: shockrah Date: Sun, 10 Nov 2019 16:37:24 -0800 Subject: [PATCH] shifted goals for the codebase in client it's now just the main website's code --- {client => website}/.gitignore | 0 {client => website}/Cargo.lock | 0 {client => website}/Cargo.toml | 0 {client => website}/Rocket.toml | 0 {client => website}/build.sh | 0 {client => website}/src/main.rs | 4 +--- 6 files changed, 1 insertion(+), 3 deletions(-) rename {client => website}/.gitignore (100%) rename {client => website}/Cargo.lock (100%) rename {client => website}/Cargo.toml (100%) rename {client => website}/Rocket.toml (100%) rename {client => website}/build.sh (100%) rename {client => website}/src/main.rs (89%) 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;