diff --git a/.idea/readwise-bulk-upload.iml b/.idea/readwise-bulk-upload.iml
index 2b50503..cc58e9c 100644
--- a/.idea/readwise-bulk-upload.iml
+++ b/.idea/readwise-bulk-upload.iml
@@ -4,6 +4,7 @@
+
diff --git a/Cargo.lock b/Cargo.lock
index 3c424bd..5daa196 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2240,6 +2240,10 @@ dependencies = [
"unicode-ident",
]
+[[package]]
+name = "web"
+version = "0.1.0"
+
[[package]]
name = "whoami"
version = "1.6.0"
diff --git a/Cargo.toml b/Cargo.toml
index 37dcffc..df1befe 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,5 +2,5 @@
resolver = "3"
members = [
- "cli", "lib_sync_core",
+ "cli", "lib_sync_core", "web",
]
diff --git a/web/Cargo.toml b/web/Cargo.toml
new file mode 100644
index 0000000..52dfac4
--- /dev/null
+++ b/web/Cargo.toml
@@ -0,0 +1,6 @@
+[package]
+name = "web"
+version = "0.1.0"
+edition = "2024"
+
+[dependencies]
diff --git a/web/src/main.rs b/web/src/main.rs
new file mode 100644
index 0000000..e7a11a9
--- /dev/null
+++ b/web/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}