Skip to content

Commit

Permalink
feat(#9): option
Browse files Browse the repository at this point in the history
Co-authored-by: Ivan Ivanchuk <[email protected]>
  • Loading branch information
h1alexbel and l3r8yJ authored Jun 5, 2024
1 parent 3ae99e2 commit 58a29ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xml/storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use std::fs::File;

use log::info;

pub fn touch_storage() -> Result<File, Error> {
pub fn touch_storage(name: Option<&str>) -> Result<File, Error> {
let path = "fakehub.xml";
info!("Initializing XML storage: {path}");
let creating = File::create(path);
Expand Down

0 comments on commit 58a29ea

Please sign in to comment.