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

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

pub struct Launcher {
    pub versions: VersionList
    
}

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