1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-22 19:14:20 +00:00
royalnet/src/main.rs

36 lines
1,004 B
Rust

use anyhow::Result;
use crate::services::RoyalnetService;
pub(crate) mod database;
pub(crate) mod utils;
mod services;
#[tokio::main]
async fn main() -> Result<()> {
// Logging setup
pretty_env_logger::init();
log::debug!("Logging initialized successfully!");
// Telegram setup
log::trace!("Setting up Telegram bot service...");
let telegram = services::telegram::BotService::from_config();
// Run all services concurrently
log::info!("Starting services...");
let result = tokio::try_join![
telegram.run(),
];
// This should never happen, but just in case...
match result {
Err(error) => {
log::error!("A service has exited with an error, bailing out: {error:?}");
anyhow::bail!("A service has exited with an error.")
},
_ => {
log::error!("All service have exited successfully, bailing out...");
anyhow::bail!("All service have exited successfully.")
}
}
}