//! A cross-platform driver for Nikon (Coolscan) film scanners
//!
//! ```no_run
//! use nkscan::{device, session::Session};
//!
//! let devices = device::list();
//! let device = devices.first().expect("no scanner found");
//! let mut session = Session::open(device.open()?)?;
//!
//! session.stage()?; // homes the mechanism once a holder is loaded
//! let caps = session.capabilities();
//! # Ok::<(), nkscan::error::Error>(())
//! ```
pub use stub_info as python_stub_info;