Skip to content

Commit

Permalink
feat: add days (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
hitohata authored Nov 19, 2024
1 parent 13e9dff commit be2ceec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/aws_clients/src/dynamodb/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ pub mod client {
get_date_list(format!("{year}").as_str()).await
}

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

async fn get_objects(
Expand Down

0 comments on commit be2ceec

Please sign in to comment.