Pulling basic server functionality into development #9

Merged
michael-bailey merged 22 commits from network-client into Development 2021-04-13 17:17:58 +00:00
2 changed files with 12 additions and 0 deletions
Showing only changes of commit e4fb0afee8 - Show all commits

9
client/Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "client"
version = "0.1.0"
authors = ["michael-bailey <mickyb18a@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
client/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}