Add initial project structure with API and web components

This commit is contained in:
2025-03-09 16:52:10 +01:00
parent 7af6cb2d2b
commit 2001ef1a82
12 changed files with 210 additions and 0 deletions

8
vote-api/Cargo.toml Normal file
View File

@@ -0,0 +1,8 @@
[package]
name = "vote-api"
version = "0.1.0"
edition = "2021"
[dependencies]
actix-web = {version = "4.9.0"}
sqlx = {version = "0.8.3"}

3
vote-api/src/main.rs Normal file
View File

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