Module initializer

Module initializer 

Source
Expand description

This is the main library for the packxel-utils crate. It contains the Initializer struct which is used to initialize This should be called before any program is initialized.

use packxel_utils::initializer::PackxelInitializer;
// creates the config and log directories.
let version = env!("CARGO_PKG_VERSION");
let initializer = PackxelInitializer::init("packxel", version);

Structsยง

PackxelInitializer