Skip to content

Commit

Permalink
sync with main.go code
Browse files Browse the repository at this point in the history
  • Loading branch information
patinthehat committed Aug 25, 2023
1 parent 01288cf commit c6a5cd1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/main-windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import (
)

func main() {
app.App = &app.Application{
CmdStartCallback: func(cmd *exec.Cmd) {},
KillCommandCallback: func(cmd *exec.Cmd) {
utils.KillProcessOnWindows(cmd)
},
app.App = app.NewApplication()

app.App.CmdStartCallback = func(cmd *exec.Cmd) {}
app.App.KillCommandCallback = func(cmd *exec.Cmd) {
utils.KillProcessOnWindows(cmd)
}

app.App.Run()
Expand Down

0 comments on commit c6a5cd1

Please sign in to comment.