refactor: ♻️ renaming modules

This commit is contained in:
Ahmet Kaan Gümüş 2025-05-13 05:13:39 +03:00
parent 00c46240ba
commit 96a837755d
5 changed files with 5 additions and 5 deletions

View file

@ -1,2 +1,2 @@
# rust_communication
# rust_webrtc

View file

@ -1,5 +1,5 @@
[package]
name = "rust_communication_client"
name = "rust_webrtc_client"
version = "0.1.0"
edition = "2024"

View file

@ -1,5 +1,5 @@
use leptos::mount::mount_to_body;
use rust_communication_client::gui::app;
use rust_webrtc_client::gui::app;
fn main() {
println!("Hello, world!");

View file

@ -1,5 +1,5 @@
[package]
name = "rust_communication_server"
name = "rust_webrtc_server"
version = "0.1.0"
edition = "2024"

View file

@ -1,4 +1,4 @@
use rust_communication_server::signal::start_signalling;
use rust_webrtc_server::signal::start_signalling;
#[tokio::main]
async fn main() {