Skip to content

Commit

Permalink
feat: added objects (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
hitohata authored Nov 19, 2024
1 parent 6b442e2 commit 13e9dff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/aws_clients/src/dynamodb/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ pub mod client {
}

async fn get_objects(
_year: usize,
_month: usize,
_day: usize,
year: usize,
month: usize,
day: usize,
) -> Result<Vec<String>, String> {
todo!()
get_date_list(format!("{year}-{month}-{day}").as_str()).await
}
}

Expand Down

0 comments on commit 13e9dff

Please sign in to comment.