mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-11 04:15:48 +02:00
23 lines
402 B
Go
23 lines
402 B
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
var (
|
|
startTime time.Time
|
|
debugging bool
|
|
)
|
|
|
|
func main() {
|
|
debuggingPointer := flag.Bool("debug", false, "a boolean")
|
|
flag.Parse()
|
|
debugging = *debuggingPointer
|
|
fmt.Println(homeDirectory() + "/go/src/github.com/jesseduffield/lazygit/development.log")
|
|
devLog("\n\n\n\n\n\n\n\n\n\n")
|
|
startTime = time.Now()
|
|
verifyInGitRepo()
|
|
run()
|
|
}
|