mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-07-30 03:23:08 +03:00
logging durations and more stuff
This commit is contained in:
12
main.go
12
main.go
@ -1,11 +1,15 @@
|
||||
package main
|
||||
|
||||
import "github.com/fatih/color"
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
// StartTime : The starting time of the app
|
||||
var StartTime time.Time
|
||||
|
||||
func main() {
|
||||
verifyInGitRepo()
|
||||
a, b := gitUpstreamDifferenceCount()
|
||||
colorLog(color.FgRed, a, b)
|
||||
devLog("\n\n\n\n\n\n\n\n\n\n")
|
||||
StartTime = time.Now()
|
||||
verifyInGitRepo()
|
||||
run()
|
||||
}
|
||||
|
Reference in New Issue
Block a user