Skip to content

Commit

Permalink
chore(services): add importer service
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnisDa committed Aug 15, 2024
1 parent 575a5c3 commit 5f9c3c1
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 0 deletions.
5 changes: 5 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/services/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ edition = "2021"
exporter_service = { path = "./exporter" }
file_storage_service = { path = "./file_storage" }
fitness_service = { path = "./fitness" }
importer_service = { path = "./importer" }
integration_service = { path = "./integration" }
jwt_service = { path = "./jwt" }
miscellaneous_service = { path = "./miscellaneous" }
Expand Down
6 changes: 6 additions & 0 deletions crates/services/importer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[package]
name = "importer_service"
version = "0.1.0"
edition = "2021"

[dependencies]
1 change: 1 addition & 0 deletions crates/services/importer/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,6 +1,7 @@
pub use exporter_service::*;
pub use file_storage_service::*;
pub use fitness_service::*;
pub use importer_service::*;
pub use integration_service::*;
pub use jwt_service::*;
pub use miscellaneous_service::*;
Expand Down

0 comments on commit 5f9c3c1

Please sign in to comment.