Compare commits

..

2 Commits

Author SHA1 Message Date
30a383d511 Init server 2025-09-08 20:16:53 +02:00
36283bdc1e Add .idea & .vscode to .gitignore 2025-09-08 20:16:42 +02:00
3 changed files with 11 additions and 6 deletions

8
.gitignore vendored
View File

@@ -10,9 +10,5 @@ target/
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
# RustRover
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
.idea/
.vscode

6
server/Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "server"
version = "0.1.0"
edition = "2024"
[dependencies]

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

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