cosmic-files/src/main.rs
2024-11-15 11:10:30 -07: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()
}