Skip to content

Commit

Permalink
[reports-service] Create package
Browse files Browse the repository at this point in the history
Summary: Hello world commit for reports service

Test Plan: Cargo run displays hello world

Reviewers: michal, jon, varun

Reviewed By: varun

Subscribers: ashoat, tomek

Differential Revision: https://phab.comm.dev/D8864
  • Loading branch information
barthap committed Aug 24, 2023
1 parent b45ea60 commit e06b3d4
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions services/reports/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
target
7 changes: 7 additions & 0 deletions services/reports/Cargo.lock

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

9 changes: 9 additions & 0 deletions services/reports/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[package]
name = "reports"
description = "reports service"
homepage = "https://comm.app"
license = "BSD-3-Clause"
version = "0.1.0"
edition = "2021"

[dependencies]
3 changes: 3 additions & 0 deletions services/reports/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}

0 comments on commit e06b3d4

Please sign in to comment.