summaryrefslogtreecommitdiffstats
path: root/src/launcher.rs
blob: d99a29464366c7a75ccacdc1de7a4998ad34d45b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod constants;
mod version;

use std::error::Error;
pub use version::VersionList;

pub struct Launcher {
    pub versions: VersionList
}

impl Launcher {
    pub async fn new() -> Result<Launcher, Box<dyn Error>> {
        todo!()
    }
}