Forráskód Böngészése

Cleanup: Only one binary, rename it main

Vecna 11 hónapja
szülő
commit
0e00df2a49
1 módosított fájl, 1 hozzáadás és 3 törlés
  1. 1 3
      src/main.rs

+ 1 - 3
src/bin/lox_client.rs → 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;