You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nenv/src/download.rs

6 lines
157 B
Rust

use crate::{error::LibResult, Version};
pub async fn download_version(version: Version) -> LibResult<()> {
todo!("Download node version to data dir")
}