summaryrefslogtreecommitdiffstats
path: root/main.go
blob: 1ca5357da82d1fecd0777fa60b0022e118c92901 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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()
}