Skip to content

Commit

Permalink
chore: add files names
Browse files Browse the repository at this point in the history
  • Loading branch information
Devesh Rawat committed Nov 23, 2023
1 parent d5b6121 commit 73ca6b9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 1 deletion.
1 change: 0 additions & 1 deletion scripts/init_db.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/env bash

set -eo pipefail

check_command() {
Expand Down
1 change: 1 addition & 0 deletions src/configuration.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
//! src/configuration.rs
1 change: 1 addition & 0 deletions src/routes/health_check.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//! src/routes/health_check.rs
use actix_web::HttpResponse;
pub async fn health_check() -> HttpResponse {
HttpResponse::Ok().finish()
Expand Down
2 changes: 2 additions & 0 deletions src/routes/subscriptions.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! src/routes/subscriptions.rs
use actix_web::{web, HttpResponse};
use serde::Deserialize;

Expand Down
2 changes: 2 additions & 0 deletions src/startup.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! src/startup.rs
use actix_web::{dev::Server, web, App, HttpServer};
use std::net::TcpListener;

Expand Down

0 comments on commit 73ca6b9

Please sign in to comment.