fixes for locales, improvements, more logging, stub cs translation
This commit is contained in:
+1
-5
@@ -10,12 +10,10 @@ extern crate serde;
|
||||
#[macro_use]
|
||||
extern crate thiserror;
|
||||
|
||||
use std::sync::Arc;
|
||||
use clap::Arg;
|
||||
use log::LevelFilter;
|
||||
|
||||
use crate::store::{NewGroupOptions, StoreOptions};
|
||||
use crate::tr::TranslationTable;
|
||||
use crate::utils::acct_to_server;
|
||||
|
||||
mod command;
|
||||
@@ -132,10 +130,8 @@ async fn main() -> anyhow::Result<()> {
|
||||
|
||||
store.find_locales().await;
|
||||
|
||||
return Ok(());
|
||||
|
||||
// Start
|
||||
let groups = Arc::new(store).spawn_groups().await?;
|
||||
let groups = store.spawn_groups().await?;
|
||||
|
||||
let mut handles = vec![];
|
||||
for mut g in groups {
|
||||
|
||||
Reference in New Issue
Block a user