2024-06-30 22:47:28 +03:00
|
|
|
#![allow(dead_code)]
|
|
|
|
|
|
|
|
use tracing_subscriber::EnvFilter;
|
|
|
|
|
2024-09-28 16:32:23 +03:00
|
|
|
mod bbs;
|
2024-06-30 22:47:28 +03:00
|
|
|
|
2024-07-01 18:24:37 +03:00
|
|
|
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|
2024-06-30 22:47:28 +03:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// Initialize tracing
|
|
|
|
tracing_subscriber::fmt()
|
|
|
|
.with_env_filter(EnvFilter::from_default_env())
|
|
|
|
.event_format(tracing_subscriber::fmt::format().with_source_location(true))
|
|
|
|
.init();
|
|
|
|
|
2024-09-28 16:32:23 +03:00
|
|
|
bbs::init();
|
2024-06-30 22:47:28 +03:00
|
|
|
}
|