graphile_worker_admin_ui 0.2.1

Embedded Leptos admin UI for graphile_worker
Documentation
1
2
3
4
5
6
7
8
9
10
#[cfg(target_arch = "wasm32")]
compile_error!(
    "graphile_worker_admin_ui is a native Axum server crate; use graphile_worker_admin_ui_client for the WASM client."
);

#[cfg(not(target_arch = "wasm32"))]
mod native;

#[cfg(not(target_arch = "wasm32"))]
pub use native::*;