Skip to content

Commit

Permalink
chore(resolvers,services): add new files for fitness
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnisDa committed Aug 15, 2024
1 parent f2b9b2d commit 99d6f09
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/resolvers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ edition = "2021"

[dependencies]
exporter_resolver = { path = "./exporter" }
fitness_resolver = { path = "./fitness" }
6 changes: 6 additions & 0 deletions crates/resolvers/fitness/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[package]
name = "fitness_resolver"
version = "0.1.0"
edition = "2021"

[dependencies]
1 change: 1 addition & 0 deletions crates/resolvers/fitness/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions crates/resolvers/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
pub use exporter_resolver::*;
pub use fitness_resolver::*;
1 change: 1 addition & 0 deletions crates/services/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ edition = "2021"
[dependencies]
exporter_service = { path = "./exporter" }
file_storage_service = { path = "./file_storage" }
fitness_service = { path = "./fitness" }
integration_service = { path = "./integration" }
jwt_service = { path = "./jwt" }
notification_service = { path = "./notification" }
6 changes: 6 additions & 0 deletions crates/services/fitness/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[package]
name = "fitness_service"
version = "0.1.0"
edition = "2021"

[dependencies]
1 change: 1 addition & 0 deletions crates/services/fitness/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions crates/services/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
pub use exporter_service::*;
pub use file_storage_service::*;
pub use fitness_service::*;
pub use integration_service::*;
pub use jwt_service::*;
pub use notification_service::*;

0 comments on commit 99d6f09

Please sign in to comment.