Add network link to ue-server implementation #13

Open
dkanus wants to merge 23 commits from feature_link into master
Showing only changes of commit 5ce511c5a7 - Show all commits

View File

@ -7,8 +7,7 @@ fn main() {
let args: Vec<String> = env::args().collect();
let filename = &args[1];
let config = unreal_config::load_file(Path::new(filename));
match config {
Ok(config) => print!("{}", config),
_ => (),
if let Ok(config) = config {
print!("{}", config);
}
}