init

Function init 

Source
pub fn init() -> Result<()>
Expand description

Initialize the library

Currently a no-op but reserved for future initialization requirements.

ยงExample

use atlas_common::init;

fn main() -> atlas_common::Result<()> {
    init()?;
    // Your code here
    Ok(())
}