mirror of https://github.com/Trivernis/nenv
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.
14 lines
188 B
Rust
14 lines
188 B
Rust
2 years ago
|
mod consts;
|
||
|
mod download;
|
||
|
pub mod error;
|
||
|
mod utils;
|
||
|
mod web_api;
|
||
|
|
||
|
pub enum Version {
|
||
|
Latest,
|
||
|
Lts,
|
||
|
Specific(u8, Option<u8>, Option<u16>),
|
||
|
}
|
||
|
|
||
|
pub fn install(version: Version) {}
|