#![allow(clippy::module_inception)]
#![warn(missing_debug_implementations, missing_docs)]
#![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg))]
mod error;
mod ironworks;
mod utility;
#[cfg(feature = "excel")]
pub mod excel;
#[cfg(feature = "ffxiv")]
pub mod ffxiv;
pub mod file;
pub mod sestring;
#[cfg(feature = "sqpack")]
pub mod sqpack;
pub use {
error::{Error, ErrorValue},
ironworks::{Ironworks, Resource},
};