some println's

This commit is contained in:
OMGeeky
2023-04-02 13:34:50 +02:00
parent 03872cab96
commit b3be83524d
2 changed files with 2 additions and 1 deletions

View File

@@ -74,6 +74,7 @@ async fn get_watched_streamers(client: &BigqueryClient) -> Result<Vec<Streamers>
}
pub async fn start_backup() -> Result<()> {
println!("Starting backup");
let config = downloader_config::load_config();
let project_id = &config.bigquery_project_id;
let service_account_path = &config.bigquery_service_account_path;

View File

@@ -27,7 +27,7 @@ const DATASET_ID: &str = "backup_data";
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
// println!("Hello, world!");
println!("Hello, world!");
start_backup().await?;
// sample().await?;
Ok(())