Try it #1

Merged
phoenix merged 9 commits from try_it into main 2026-08-08 13:27:10 -04:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 742393c25b - Show all commits
+1 -1
View File
@@ -1,4 +1,4 @@
#[derive(Default)] #[derive(Debug, Default)]
pub struct Config { pub struct Config {
pub url: String, pub url: String,
pub bucket: String, pub bucket: String,
+1 -1
View File
@@ -2,7 +2,7 @@ pub mod config;
use aws_sdk_s3::config::{Credentials, Region}; use aws_sdk_s3::config::{Credentials, Region};
#[derive(Default)] #[derive(Debug, Default)]
pub struct Data { pub struct Data {
pub filepath: String, pub filepath: String,
pub raw_data: Vec<u8>, pub raw_data: Vec<u8>,