luaur-cli-lib 0.1.2

Shared CLI helpers for the luaur tools.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use alloc::string::String;

#[derive(Debug, Clone, Default)]
pub struct VfsNavigator {
    pub(crate) real_path: String,
    pub(crate) absolute_real_path: String,
    pub(crate) absolute_path_prefix: String,
    pub(crate) module_path: String,
    pub(crate) absolute_module_path: String,
}

pub use crate::enums::config_status::ConfigStatus;