luaur-cli-lib 0.1.2

Shared CLI helpers for the luaur tools.
Documentation
1
2
3
4
5
6
7
8
use crate::records::vfs_navigator::VfsNavigator;
use alloc::string::String;

impl VfsNavigator {
    pub fn get_absolute_file_path(&self) -> String {
        self.absolute_real_path.clone()
    }
}