diff --git a/src/bin/lox_client.rs b/src/main.rs similarity index 97% rename from src/bin/lox_client.rs rename to src/main.rs index 5e5d0c6..6f7cb79 100644 --- a/src/bin/lox_client.rs +++ b/src/main.rs @@ -1,8 +1,6 @@ -// This seems like probably not the best way to do this, but it works. -#[path = "../client_lib.rs"] mod client_lib; use client_lib::*; -#[path = "../client_net.rs"] + mod client_net; use client_net::HyperNet;