5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-10 09:09:40 +08:00

[v3] goformat fixes

This commit is contained in:
Travis McLane 2023-09-28 16:47:04 -05:00
parent 29859ceedf
commit 2b2828ea41

View File

@ -3,7 +3,6 @@
package single_instance
import (
"fmt"
"os"
"os/signal"
"syscall"
@ -18,7 +17,7 @@ func init() {
)
go func() {
for {
s := <-sigc
<-sigc
application.Get().Show()
}
}()