Slight Backend Refactoring

This commit is contained in:
Neshura 2023-11-01 21:55:08 +01:00
parent 9a8f2198f1
commit 5740d173c5
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
3 changed files with 37 additions and 28 deletions
src-tauri/src

View file

@ -21,5 +21,6 @@ fn main() {
#[tauri::command]
fn test(message: metadata::Metadata) -> String {
message.save_to_xml("/home/neshura/Repositories/comicinfo-editor-v2/ComicInfo.xml");
format!("Series: '{}' | Title: '{}'", message.series_title, message.title)
}