cosmic-files/src/main.rs
2025-02-12 19:19:19 +01:00

10 lines
230 B
Rust

#[cfg(feature = "jemalloc")]
use tikv_jemallocator::Jemalloc;
#[cfg(feature = "jemalloc")]
#[global_allocator]
static GLOBAL: Jemalloc = Jemalloc;
fn main() -> Result<(), Box<dyn std::error::Error>> {
cosmic_files::main()
}