feat: initial commit

This commit is contained in:
2025-03-19 08:52:09 +01:00
commit 4fd2d85c97
26 changed files with 6300 additions and 0 deletions

1
src/jobs/mod.rs Normal file
View File

@@ -0,0 +1 @@
pub mod tmdb;

12
src/jobs/tmdb.rs Normal file
View File

@@ -0,0 +1,12 @@
use std::fmt::Error;
pub async fn get_series() {
// TODO: get series upcomming dates from tmdb
//
let body = reqwest::get("https://www.rust-lang.org")
.await?
.text()
.await?;
println!("body = {body:?}");
}