1
0
mirror of https://github.com/lencx/ChatGPT.git synced 2024-10-01 01:06:13 -04:00
This commit is contained in:
lencx 2023-05-29 12:42:56 +08:00
parent 0a88431965
commit 2b03c2ccde
2 changed files with 6 additions and 2 deletions

View File

@ -21,7 +21,9 @@
**New repository: https://github.com/lencx/nofwl** **New repository: https://github.com/lencx/nofwl**
--- ## Live Demo
- [ChatGPT Desktop Application v1.0.0](https://youtu.be/IIuuB5vFFAQ)
## 📦 Install ## 📦 Install

View File

@ -102,7 +102,9 @@ pub fn init(app: &mut App) -> Result<(), Box<dyn std::error::Error>> {
.initialization_script(&load_script("chat.js")) .initialization_script(&load_script("chat.js"))
} }
main_win.build().unwrap(); if let Err(err) = main_win.build() {
error!("core_build_error: {}", err);
}
}); });
} }