dylint_internal 2.4.2

Dylint internals
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use anyhow::Result;
use std::path::Path;

#[ctor::ctor]
fn init() {
    env_logger::init();
}

pub fn new_template(path: &Path) -> Result<()> {
    crate::packaging::new_template(path)?;
    crate::packaging::use_local_packages(path)?;
    Ok(())
}