Skip to content

Commit

Permalink
build: add cdn-server workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
luisfbl committed Dec 14, 2023
1 parent 2634e07 commit d7050e6
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ members = [
"common",
"core",
"rest-server",
"cdn-server",
"microservices"
]
resolver = "2"
Expand Down
14 changes: 14 additions & 0 deletions cdn-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[package]
name = "cdn-server"
version = "0.1.0"
edition.workspace = true

[dependencies]
common = { path = "../common"}
core = { path = "../core" }

sqlx.workspace = true
axum.workspace = true
tokio.workspace = true
log.workspace = true
env_logger.workspace = true
1 change: 1 addition & 0 deletions cdn-server/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fn main() {}

0 comments on commit d7050e6

Please sign in to comment.