Skip to content

Commit

Permalink
formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
mbround18 committed Oct 9, 2023
1 parent 8a79782 commit 91144d4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/odin/server/startup.rs
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
use std::{io, process::Child};
use std::process::exit;
use std::{io, process::Child};

use daemonize::{Daemonize, Error};
use log::{debug, error, info};

use crate::mods::bepinex::BepInExEnvironment;
use crate::notifications::enums::event_status::EventStatus;
use crate::notifications::enums::notification_event::NotificationEvent;
use crate::utils::common_paths::{game_directory, saves_directory};
use crate::utils::environment::fetch_var;
use crate::{
constants,
executable::create_execution,
files::{config::ValheimArguments, create_file},
messages,
utils::environment,
};
use crate::mods::bepinex::BepInExEnvironment;
use crate::notifications::enums::event_status::EventStatus;
use crate::notifications::enums::notification_event::NotificationEvent;
use crate::utils::common_paths::{game_directory, saves_directory};
use crate::utils::environment::fetch_var;

type CommandResult = io::Result<Child>;

Expand Down

0 comments on commit 91144d4

Please sign in to comment.