PSArc_lib/lib.rs
1#![allow(non_snake_case)]
2
3/// ### Prelude
4/// Prelude includes all the required modules for using PSArc-lib in a standard context
5pub mod prelude;
6
7/// ### Archive
8/// The archive module contains structs and methods related to handling the root archive file
9pub mod archive;
10
11/// ### Traits
12/// Contains all the traits associated with functions in this library
13pub mod traits;