1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-06 03:53:59 +02:00
lazygit/main.go
2018-06-02 08:35:49 +10:00

16 lines
206 B
Go

package main
import (
"time"
)
// StartTime : The starting time of the app
var StartTime time.Time
func main() {
devLog("\n\n\n\n\n\n\n\n\n\n")
StartTime = time.Now()
verifyInGitRepo()
run()
}