Skip to content

Commit

Permalink
(modify): gofmt -w . to maintain format
Browse files Browse the repository at this point in the history
  • Loading branch information
mintRaven-05 committed Dec 22, 2024
1 parent efb1e81 commit bc15a30
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
package main
import(

import (
"flag"
kaizen "github.com/serene-brew/Kaizen/src"
)

//Main entrypoint for the application
// Main entrypoint for the application
func main() {
uninstalFlag := flag.Bool("uninstall", false, "Run the uninstaller script")
updateFlag := flag.Bool("update", false, "Run the update script")
versionFlag := flag.Bool("v", false, "views version information")
versionFlag := flag.Bool("v", false, "views version information")
flag.Parse()

if *uninstalFlag {
kaizen.RunUninstalScript()
} else if *versionFlag{
} else if *versionFlag {
kaizen.ViewVersion()
}else if *updateFlag{
} else if *updateFlag {
kaizen.RunUpdateScript()
}else{
} else {
kaizen.ExecuteAppStub()
}
}

0 comments on commit bc15a30

Please sign in to comment.