fix: correct lib crate name in main.rs (temptauri_lib -> openpylon_lib)

This commit is contained in:
Your Name
2026-02-15 19:38:50 +02:00
parent c590146be0
commit fa52a28749

View File

@@ -2,5 +2,5 @@
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
fn main() { fn main() {
temptauri_lib::run() openpylon_lib::run()
} }