feat: add basic hyperlog todos

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2025-02-12 21:29:16 +01:00
parent cdab2e1c25
commit c3fea75178
4 changed files with 31 additions and 2 deletions

View File

@@ -58,9 +58,9 @@ pub async fn execute() -> anyhow::Result<()> {
)?;
let put_object = bucket.put_object(Some(&creds), "some-object");
put_object.sign(expires_in)
let _url = put_object.sign(std::time::Duration::from_secs(30));
let state = SharedState::new().await?;
let _state = SharedState::new().await?;
}
Ok(())