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!() } }