Files
ew_author/src/main.rs
2025-11-30 16:51:08 -06:00

12 lines
326 B
Rust

#[cfg(not(feature = "library"))]
fn main() -> std::io::Result<()> {
ew::runtime::update_data_path(&ew::get_args().path);
ew::run_server(false)
}
#[cfg(feature = "library")]
fn main() {
panic!("Compiled with the library feature! You should load the shared object library and call the exported methods there.");
}