Documentation
// dacho/src/renderer/setup/entry.rs

// crates
use anyhow::Result;

// crate
use crate::create_log;

pub struct Entry {
    pub raw: ash::Entry
}

impl Entry {
    pub fn new() -> Result<Self> {
        create_log!(debug);

        let raw = unsafe { ash::Entry::load() }?;

        Ok(Self { raw })
    }
}