fix(cli/templates): fix desktop entrypoint template (#5127)

This commit is contained in:
Amr Bashir
2022-09-02 17:21:15 +02:00
committed by GitHub
parent 5643ece77c
commit 30d0e190bb

View File

@@ -3,6 +3,6 @@
windows_subsystem = "windows"
)]
fn main() {
app::AppBuilder::new()
pub fn main() {
app::AppBuilder::new().run();
}