lotus_lib/package/
mod.rs

1/*!
2
3This module provides functionality to read and parse the packages from the `Cache.Windows` 
4directory. The `Cache.Windows` directory contains the packages that store the data for Warframe.
5
6*/
7
8mod package;
9mod package_collection;
10mod package_type;
11
12pub use package::Package;
13pub use package_collection::PackageCollection;
14pub use package_type::PackageType;