summaryrefslogtreecommitdiffstats
path: root/src/launcher.rs
diff options
context:
space:
mode:
authorLibravatar bigfoot547 <[email protected]>2024-12-30 19:33:48 -0600
committerLibravatar bigfoot547 <[email protected]>2024-12-30 19:33:48 -0600
commite62d05698ba6af03906fb79acee1da488e64871a (patch)
tree000c2c5c1a682694d4dfadb809937a4edd14915b /src/launcher.rs
parentwhen the (diff)
some stuff has changed
Diffstat (limited to 'src/launcher.rs')
-rw-r--r--src/launcher.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/launcher.rs b/src/launcher.rs
index d99a294..70c313c 100644
--- a/src/launcher.rs
+++ b/src/launcher.rs
@@ -1,11 +1,14 @@
mod constants;
mod version;
+mod instance;
+mod profile;
use std::error::Error;
-pub use version::VersionList;
+use version::VersionList;
pub struct Launcher {
pub versions: VersionList
+
}
impl Launcher {