Files
ew_author/src/main.rs
2025-11-30 11:55:22 -06:00

11 lines
269 B
Rust

#[cfg(not(feature = "library"))]
fn main() -> std::io::Result<()> {
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.");
}