Przeglądaj źródła

Cleanup: Only one binary, rename it main

Vecna 11 miesięcy temu
rodzic
commit
0e00df2a49
1 zmienionych plików z 1 dodań i 3 usunięć
  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;