setup backend
This commit is contained in:
parent
e27e51f587
commit
f05eaad166
4 changed files with 22 additions and 0 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -33,3 +33,8 @@ test/
|
|||
|
||||
node_modules
|
||||
|
||||
|
||||
|
||||
# Added by cargo
|
||||
|
||||
/target
|
||||
|
|
9
Cargo.toml
Normal file
9
Cargo.toml
Normal file
|
@ -0,0 +1,9 @@
|
|||
[workspace]
|
||||
members = ["crates/*"]
|
||||
resolver = "3"
|
||||
|
||||
[workspace.package]
|
||||
name = "peer-group-grading"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
4
crates/backend/Cargo.toml
Normal file
4
crates/backend/Cargo.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
[package]
|
||||
name = "backend"
|
||||
version = {workspace = true}
|
||||
edition = {workspace = true}
|
4
crates/backend/src/main.rs
Normal file
4
crates/backend/src/main.rs
Normal file
|
@ -0,0 +1,4 @@
|
|||
|
||||
fn main() {
|
||||
|
||||
}
|
Loading…
Add table
Reference in a new issue