⬆️: megalodon 1.0.0

This commit is contained in:
VC
2025-01-24 14:54:18 +01:00
parent 3a8fd538fc
commit 26805feadb
4 changed files with 49 additions and 25 deletions

View File

@@ -27,7 +27,8 @@ pub async fn run(config: &Config) {
let conn = Connection::open(&config.oolatoocs.db_path)
.unwrap_or_else(|e| panic!("Cannot open DB: {}", e));
let mastodon = get_mastodon_instance(&config.mastodon);
let mastodon = get_mastodon_instance(&config.mastodon)
.unwrap_or_else(|e| panic!("Cannot instantiate Mastodon: {}", e));
let bluesky = get_session(&config.bluesky)
.await