setup backend

This commit is contained in:
Sphereso 2025-03-27 11:33:32 +01:00
parent e27e51f587
commit f05eaad166
4 changed files with 22 additions and 0 deletions

5
.gitignore vendored
View file

@ -33,3 +33,8 @@ test/
node_modules
# Added by cargo
/target

9
Cargo.toml Normal file
View file

@ -0,0 +1,9 @@
[workspace]
members = ["crates/*"]
resolver = "3"
[workspace.package]
name = "peer-group-grading"
version = "0.1.0"
edition = "2024"

View file

@ -0,0 +1,4 @@
[package]
name = "backend"
version = {workspace = true}
edition = {workspace = true}

View file

@ -0,0 +1,4 @@
fn main() {
}