summaryrefslogtreecommitdiffstats
path: root/ozone-cli/src
diff options
context:
space:
mode:
authorLibravatar bigfoot547 <[email protected]>2025-02-01 23:06:37 -0600
committerLibravatar bigfoot547 <[email protected]>2025-02-01 23:06:37 -0600
commitc19a1077e85334a3e5ba885a60b03d76409a2b2e (patch)
tree5e726e8180770ac9c2f6c415a0437d6d2c29c226 /ozone-cli/src
parentrandom changes (diff)
restructure project
Diffstat (limited to 'ozone-cli/src')
-rw-r--r--ozone-cli/src/main.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/ozone-cli/src/main.rs b/ozone-cli/src/main.rs
index e36867a..a27cc98 100644
--- a/ozone-cli/src/main.rs
+++ b/ozone-cli/src/main.rs
@@ -2,7 +2,7 @@ use std::env::consts::{ARCH, OS};
use std::error::Error;
use log::{error, info};
use sysinfo::System;
-use o3launcher::launcher::{Launcher, Settings};
+use ozone::launcher::{Launcher, Settings};
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
@@ -26,8 +26,8 @@ async fn main() -> Result<(), Box<dyn Error>> {
dbg!(&launch);
info!("ok");
-
- o3launcher::launcher::run_the_game(&launch)?;
+
+ ozone::launcher::run_the_game(&launch)?;
Ok(())
}